blob: 1d3b4857b4c76e4bdf8daf28211e15edb73d4aeb [file] [log] [blame]
//@ run-pass
// From https://github.com/rust-lang/rust/issues/65727
const _: &i32 = {
let x = &(5, false).0;
x
};
fn main() {
let _: &'static i32 = &(5, false).0;
}