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

9 lines
92 B
Rust

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