rust/src/test/compile-fail/mutable-huh-ptr-assign.rs

17 lines
254 B
Rust
Raw Normal View History

2011-10-17 17:41:38 -05:00
// error-pattern: assigning to immutable box
use std;
fn main() {
2011-11-16 16:41:32 -06:00
unsafe fn f(&&v: *const int) {
2011-10-17 17:41:38 -05:00
// This shouldn't be possible
*v = 1
}
unsafe {
let a = 0;
let v = ptr::mut_addr_of(a);
2011-10-17 17:41:38 -05:00
f(v);
}
}