fn quux(x: T) -> T { let f = id::; return f(x); } fn id(x: T) -> T { return x; } fn main() { assert (quux(10) == 10); }