mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
7 lines
163 B
Rust
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();
|
||
|
}
|