rust/src/test/ui/issues/issue-54189.rs
2019-06-21 00:19:11 +09:00

7 lines
163 B
Rust

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