rust/src/test/run-pass/non-legacy-modes.rs

21 lines
251 B
Rust
Raw Normal View History

struct X {
repr: int
}
fn apply<T>(x: T, f: fn(T)) {
2012-09-19 00:45:24 -05:00
f(move x);
}
fn check_int(x: int) {
assert x == 22;
}
fn check_struct(x: X) {
check_int(x.repr);
}
fn main() {
apply(22, check_int);
apply(X {repr: 22}, check_struct);
}