about summary refs log tree commit diff
path: root/tests/incremental/static_refering_to_other_static/issue-49081.rs
blob: b6c1c1a9c8bd316aeb6958db8fecbb52739d82fa (plain)
1
2
3
4
5
6
7
8
// https://github.com/rust-lang/rust/issues/49081

//@ revisions:rpass1 rpass2

pub static A: i32 = 42;
pub static B: &i32 = &A;

fn main() {}