mirror of
https://git.proxmox.com/git/rustc
synced 2025-11-05 23:50:33 +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); }
|