rust/src/test/run-pass/move-arg.rs
2011-09-12 12:49:00 +02:00

4 lines
79 B
Rust

fn test(-foo: int) { assert (foo == 10); }
fn main() { let x = 10; test(x); }