rust/tests/ui/lifetimes/issue-79187-2.rs

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

30 lines
670 B
Rust
Raw Normal View History

trait Foo {}
impl<F> Foo for F where F: Fn(&i32) -> &i32 {}
fn take_foo(_: impl Foo) {}
fn main() {
2022-05-22 01:05:15 -05:00
take_foo(|a| a);
2022-04-01 12:13:25 -05:00
//~^ ERROR implementation of `FnOnce` is not general enough
//~| ERROR mismatched types
2022-05-22 01:05:15 -05:00
take_foo(|a: &i32| a);
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
//~| ERROR mismatched types
2022-05-22 01:05:15 -05:00
take_foo(|a: &i32| -> &i32 { a });
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
//~| ERROR mismatched types
// OK
take_foo(identity(|a| a));
take_foo(identity(|a: &i32| a));
take_foo(identity(|a: &i32| -> &i32 { a }));
fn identity<F>(t: F) -> F
where
F: Fn(&i32) -> &i32,
{
t
}
}