rust/tests/ui/traits/issue-24010.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
233 B
Rust
Raw Normal View History

// run-pass
2018-11-03 23:47:10 -05:00
trait Foo: Fn(i32) -> i32 + Send {}
2018-11-03 23:47:10 -05:00
impl<T: ?Sized + Fn(i32) -> i32 + Send> Foo for T {}
2019-05-28 13:47:21 -05:00
fn wants_foo(f: Box<dyn Foo>) -> i32 {
2018-11-03 23:47:10 -05:00
f(42)
}
2018-10-24 19:03:25 -05:00
2018-11-03 23:47:10 -05:00
fn main() {
let f = Box::new(|x| x);
assert_eq!(wants_foo(f), 42);
}