summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/thread-local-not-in-prelude.rs
blob: e5ed09c600bf9618d0d04567c8ed983738423879 (plain)
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() {
}