]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/thread-local-not-in-prelude.rs
Rollup merge of #60685 - dtolnay:spdx, r=nikomatsakis
[rust.git] / src / test / run-pass / thread-local-not-in-prelude.rs
1 #![no_std]
2
3 extern crate std;
4
5 std::thread_local!(static A: usize = 30);
6
7 fn main() {
8 }