rust/src/test/run-fail/borrowck-wg-fail-3.rs

10 lines
114 B
Rust
Raw Normal View History

// error-pattern:borrowed
fn main() {
let x = @mut 3;
let y: &mut int = x;
2013-04-30 15:35:01 -05:00
let z = x;
*z = 5;
}