Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
borrowck
/
borrowck-thread-local-static-borrow-outlives-fn.rs
blob: 1cf8d187c25f4001a51510608b332cb96a6b1cc4 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
thread_local
)]
#[
thread_local
]
static
FOO
:
u8
=
3
;
fn
assert_static
(
_t
:
&
'
static
u8
)
{}
fn
main
()
{
assert_static
(&
FOO
);
//~ ERROR [E0712]
}