#![feature(box_syntax)] use std::cell::RefCell; // Regression test for issue 7364 static boxed: Box> = box RefCell::new(0); //~^ ERROR `RefCell` cannot be shared between threads safely [E0277] fn main() { }