mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
9 lines
143 B
Rust
9 lines
143 B
Rust
// https://github.com/rust-lang/rust/issues/49081
|
|
|
|
//@ revisions:rpass1 rpass2
|
|
|
|
pub static A: i32 = 42;
|
|
pub static B: &i32 = &A;
|
|
|
|
fn main() {}
|