mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
190 B
Rust
11 lines
190 B
Rust
// 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); }
|