blob: 06c3aaedd86dd48a76569d9279566725cb24c959 [file] [log] [blame]
let A : i32 = 1;
let _A : i32 = 2;
fn f() {
let B = A;
let _B = _A;
}