rust/src/test/run-pass/borrowck-wg-simple.rs

10 lines
93 B
Rust
Raw Normal View History

fn f(x: &int) {
io::println(x.to_str());
}
fn main() {
let x = @mut 3;
f(x);
}