rust/src/test/compile-fail/unsafe-alias-2.rs

8 lines
168 B
Rust
Raw Normal View History

// error-pattern:invalidate alias x
2011-07-27 07:19:39 -05:00
fn whoknows(x: @mutable int) { *x = 10; }
fn main() {
2011-07-27 07:19:39 -05:00
let box = @mutable 1;
alt *box { x { whoknows(box); log_err x; } }
}