mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
10 lines
169 B
Rust
10 lines
169 B
Rust
//@ run-pass
|
|
// Test a rather underspecified example:
|
|
#![allow(unused_braces)]
|
|
|
|
pub fn main() {
|
|
let f = {|i| i};
|
|
assert_eq!(f(2), 2);
|
|
assert_eq!(f(5), 5);
|
|
}
|