rust/src/test/run-pass/non-legacy-modes.rs
2012-10-12 20:43:38 -07:00

21 lines
251 B
Rust

struct X {
repr: int
}
fn apply<T>(x: T, f: fn(T)) {
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);
}