// run-pass fn quux(x: T) -> T { let f = id::; return f(x); } fn id(x: T) -> T { return x; } pub fn main() { assert_eq!(quux(10), 10); }