blob: 4296d58df0d510f8a233487690ef0ccd31670449 [file] [log] [blame]
//@ run-pass
//@ proc-macro: gen-lifetime-token.rs
extern crate gen_lifetime_token as bar;
bar::bar!();
fn main() {
let x: &'static i32 = FOO;
assert_eq!(*x, 1);
}