rust/src/test/run-pass/move-2.rs

3 lines
72 B
Rust
Raw Normal View History

fn main() { auto x = @tup(1, 2, 3); auto y <- x; assert (y._1 == 2); }