2018-08-03 13:27:35 +02:00
|
|
|
fn main() {
|
|
|
|
|
let x: &'static bool = &(42 as *const i32 == 43 as *const i32);
|
2019-04-22 08:40:08 +01:00
|
|
|
//~^ 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
|
2018-08-03 14:22:22 +02:00
|
|
|
}
|