rust/tests/ui/borrowck/borrowck-thread-local-static-borrow-outlives-fn.rs
2023-01-11 09:32:08 +00:00

10 lines
159 B
Rust

#![feature(thread_local)]
#[thread_local]
static FOO: u8 = 3;
fn assert_static(_t: &'static u8) {}
fn main() {
assert_static(&FOO); //~ ERROR [E0712]
}