rust/tests/ui/nll/issue-54189.rs
2024-03-20 13:00:34 -04:00

8 lines
236 B
Rust

fn bug() -> impl for <'r> Fn() -> &'r () { || { &() } }
//~^ ERROR binding for associated type `Output` references lifetime `'r`
//~| ERROR binding for associated type `Output` references lifetime `'r`
fn main() {
let f = bug();
}