Fix tidy
This commit is contained in:
parent
a091a6567c
commit
4b731a908b
2 changed files with 2 additions and 2 deletions
|
@ -24,4 +24,4 @@ const Y2: usize = &1 as *const i32 as usize + 1; //~ ERROR cannot be used
|
|||
const Z: i32 = unsafe { *(&1 as *const i32) };
|
||||
// unconst and bad, will thus error in miri
|
||||
const Z2: i32 = unsafe { *(42 as *const i32) }; //~ ERROR cannot be used
|
||||
const Z3: i32 = unsafe { *(44 as *const i32) }; //~ ERROR cannot be used
|
||||
const Z3: i32 = unsafe { *(44 as *const i32) }; //~ ERROR cannot be used
|
||||
|
|
|
@ -15,4 +15,4 @@ fn main() {
|
|||
//~^ ERROR does not live long enough
|
||||
let y: &'static usize = &(&1 as *const i32 as usize + 1); //~ ERROR does not live long enough
|
||||
let z: &'static i32 = &(unsafe { *(42 as *const i32) }); //~ ERROR does not live long enough
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue