1
Fork 0
rust/tests/ui/issues/issue-7364.rs
2024-12-23 22:15:32 +00:00

8 lines
266 B
Rust

use std::cell::RefCell;
// Regression test for issue 7364
static boxed: Box<RefCell<isize>> = Box::new(RefCell::new(0));
//~^ ERROR `RefCell<isize>` cannot be shared between threads safely [E0277]
//~| ERROR cannot call non-const associated function
fn main() { }