rust/src/test/ui/issues/issue-52533.rs

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

13 lines
323 B
Rust
Raw Normal View History

2022-05-22 00:02:55 -05:00
// revisions: base nll
// ignore-compare-mode-nll
//[nll] compile-flags: -Z borrowck=mir
fn foo(_: impl for<'a> FnOnce(&'a u32, &u32) -> &'a u32) {
}
fn main() {
foo(|a, b| b)
2022-05-22 00:02:55 -05:00
//[base]~^ ERROR lifetime of reference outlives lifetime of borrowed content...
//[nll]~^^ ERROR lifetime may not live long enough
}