mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
11 lines
481 B
Rust
11 lines
481 B
Rust
fn main() {
|
|
let x: &'static bool = &(42 as *const i32 == 43 as *const i32);
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
let y: &'static usize = &(&1 as *const i32 as usize + 1);
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
let z: &'static i32 = &(unsafe { *(42 as *const i32) });
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
let a: &'static bool = &(main as fn() == main as fn());
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
}
|