mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:58:10 +00:00
10 lines
168 B
Rust
10 lines
168 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);
|
|
}
|