rust/tests/ui/consts/const-eval/promoted_raw_ptr_ops.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
481 B
Rust
Raw Normal View History

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
2018-08-03 07:22:22 -05:00
}