mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
8 lines
249 B
Rust
8 lines
249 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 fn
|
|
|
|
fn main() { }
|