fn quux<@T>(x: T) -> T { let f = bind id::(_); ret f(x); } fn id<@T>(x: T) -> T { ret x; } fn main() { assert (quux(10) == 10); }