mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
286 B
Rust
15 lines
286 B
Rust
// run-pass
|
|
// Tests for the new |args| expr lambda syntax
|
|
|
|
|
|
fn f<F>(i: isize, f: F) -> isize where F: FnOnce(isize) -> isize { f(i) }
|
|
|
|
fn g<G>(_g: G) where G: FnOnce() { }
|
|
|
|
pub fn main() {
|
|
assert_eq!(f(10, |a| a), 10);
|
|
g(||());
|
|
assert_eq!(f(10, |a| a), 10);
|
|
g(||{});
|
|
}
|