mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
13 lines
179 B
Rust
13 lines
179 B
Rust
|
// 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;
|
||
|
}
|