1 2 3 4 5 6 7 8 9
// run-pass #![no_std] extern crate std; std::thread_local!(static A: usize = 30); fn main() { }