]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/static_refering_to_other_static/issue-49081.rs
Auto merge of #74060 - kpp:remove_length_at_most_32, r=dtolnay
[rust.git] / src / test / incremental / static_refering_to_other_static / issue-49081.rs
1 // https://github.com/rust-lang/rust/issues/49081
2
3 // revisions:rpass1 rpass2
4
5 pub static A: i32 = 42;
6 pub static B: &i32 = &A;
7
8 fn main() {}