Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
gen-lifetime-token.rs
blob: d65efb5c46475422a02e954aee3a4eeb9656a0df [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ aux-build:gen-lifetime-token.rs
extern
crate gen_lifetime_token
as
bar
;
bar
::
bar
!();
fn
main
()
{
let
x
:
&
'
static
i32
=
FOO
;
assert_eq
!(*
x
,
1
);
}