summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/promoted_raw_ptr_ops.rs
blob: 1800b0a9785b1e0ef127d04ebcda4f0d167b50ac (plain)
1
2
3
4
5
6
7
8
9
10
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
}