2017-06-04 12:43:31 -05:00
|
|
|
fn main() {
|
|
|
|
let x = 13;
|
|
|
|
let y = &x;
|
|
|
|
let z = &y as *const &i32 as *const u8;
|
|
|
|
// the deref fails, because we are reading only a part of the pointer
|
2018-07-15 04:21:56 -05:00
|
|
|
let _ = unsafe { *z }; //~ ERROR constant evaluation error
|
2018-05-09 10:45:16 -05:00
|
|
|
//~^ NOTE tried to access part of a pointer value as raw bytes
|
2017-06-04 12:43:31 -05:00
|
|
|
}
|