mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
171 B
Rust
12 lines
171 B
Rust
// 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);
|
|
}
|