blob: b9194c6b3705f3e20817c08bc37b2ceb88ed7d76 [file] [log] [blame]
// aux-build:internal_unstable.rs
#![allow(dead_code)]
extern crate internal_unstable;
thread_local!(static FOO: () = ());
thread_local!(static BAR: () = internal_unstable::unstable()); //~ ERROR use of unstable
fn main() {}