blob: 9ba4224732b445629132dfe258fd07ef364c4d47 [file] [log] [blame]
// run-pass
// Issue #45: infer type parameters in function applications
fn id<T>(x: T) -> T { return x; }
pub fn main() { let x: isize = 42; let y: isize = id(x); assert_eq!(x, y); }