rust/tests/ui/issues/issue-52533.rs

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

8 lines
143 B
Rust
Raw Normal View History

fn foo(_: impl for<'a> FnOnce(&'a u32, &u32) -> &'a u32) {
}
fn main() {
foo(|a, b| b)
2022-04-01 17:13:25 +00:00
//~^ ERROR lifetime may not live long enough
}