mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
405 B
Rust
12 lines
405 B
Rust
// Test that `#[thread_local]` attribute is gated by `thread_local`
|
|
// feature gate.
|
|
//
|
|
// (Note that the `thread_local!` macro is explicitly *not* gated; it
|
|
// is given permission to expand into this unstable attribute even
|
|
// when the surrounding context does not have permission to use it.)
|
|
|
|
#[thread_local] //~ ERROR `#[thread_local]` is an experimental feature
|
|
static FOO: i32 = 3;
|
|
|
|
pub fn main() {}
|