mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
28 lines
387 B
Rust
28 lines
387 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
// Test that you can supply `&F` where `F: Fn()`.
|
|
|
|
#![feature(lang_items)]
|
|
|
|
fn a<F:Fn() -> i32>(f: F) -> i32 {
|
|
f()
|
|
}
|
|
|
|
fn b(f: &dyn Fn() -> i32) -> i32 {
|
|
a(f)
|
|
}
|
|
|
|
fn c<F:Fn() -> i32>(f: &F) -> i32 {
|
|
a(f)
|
|
}
|
|
|
|
fn main() {
|
|
let z: isize = 7;
|
|
|
|
let x = b(&|| 22);
|
|
assert_eq!(x, 22);
|
|
|
|
let x = c(&|| 22);
|
|
assert_eq!(x, 22);
|
|
}
|