2018-10-22 11:01:32 -05:00
|
|
|
// Make sure we cannot use raw ptrs to access a local that
|
2018-11-07 07:56:25 -06:00
|
|
|
// we took the direct address of.
|
2018-10-22 11:01:32 -05:00
|
|
|
fn main() {
|
|
|
|
let mut x = 42;
|
2018-11-07 07:56:25 -06:00
|
|
|
let raw = &mut x as *mut i32 as usize as *mut i32;
|
|
|
|
let _ptr = &mut x;
|
2019-04-16 10:17:28 -05:00
|
|
|
unsafe { *raw = 13; } //~ ERROR borrow stack
|
2018-10-22 11:01:32 -05:00
|
|
|
}
|