mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
8 lines
236 B
Rust
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();
|
|
}
|