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

16 lines
253 B
Rust
Raw Normal View History

2011-05-31 18:11:30 -05:00
use std;
import std::uint;
fn test(@tup(int, int, int) foo) -> @tup(int, int, int) {
auto bar <- foo;
auto baz <- bar;
auto quux <- baz;
ret quux;
}
fn main() {
auto x = @tup(1,2,3);
auto y = test(x);
assert (y._2 == 3);
}