blob: 9ba4224732b445629132dfe258fd07ef364c4d47 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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); }
|