Files
rust/tests/ui/static/global-variable-promotion-error-7364.rs
2025-08-27 15:06:05 -04:00

10 lines
315 B
Rust

// https://github.com/rust-lang/rust/issues/7364
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() { }