2015-02-28 21:09:42 -06:00
|
|
|
// aux-build:internal_unstable.rs
|
|
|
|
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
extern crate internal_unstable;
|
|
|
|
|
|
|
|
|
|
|
|
thread_local!(static FOO: () = ());
|
2015-03-05 20:33:58 -06:00
|
|
|
thread_local!(static BAR: () = internal_unstable::unstable()); //~ ERROR use of unstable
|
2015-02-28 21:09:42 -06:00
|
|
|
|
2015-03-05 20:33:58 -06:00
|
|
|
fn main() {}
|