mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
12 lines
175 B
Rust
12 lines
175 B
Rust
//@ 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);
|
|
}
|