2022-05-22 00:02:55 -05:00
|
|
|
// revisions: base nll
|
|
|
|
// ignore-compare-mode-nll
|
|
|
|
//[nll] compile-flags: -Z borrowck=mir
|
|
|
|
|
2018-07-23 06:09:30 -05:00
|
|
|
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
|
2018-07-23 06:09:30 -05:00
|
|
|
}
|