mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
325 B
Rust
17 lines
325 B
Rust
// ignore-windows
|
|
// aux-build:cfg-target-thread-local.rs
|
|
|
|
#![feature(thread_local)]
|
|
|
|
extern crate cfg_target_thread_local;
|
|
|
|
extern "C" {
|
|
#[cfg_attr(target_thread_local, thread_local)]
|
|
//~^ `cfg(target_thread_local)` is experimental and subject to change
|
|
static FOO: u32;
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(FOO, 3);
|
|
}
|