summaryrefslogtreecommitdiffstats
path: root/tests/ui/thread-local/auxiliary/tls-export.rs
blob: 027213bc033499ace73632086765e4efbf22f597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![crate_type = "dylib"]
#![feature(thread_local)]
#![feature(cfg_target_thread_local)]

extern crate tls_rlib;

pub use tls_rlib::*;

#[cfg(target_thread_local)]
#[thread_local]
pub static FOO: bool = true;

#[cfg(target_thread_local)]
#[inline(never)]
pub fn foo_addr() -> usize {
    &FOO as *const bool as usize
}