summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-54189.rs
blob: 70aecc384effebfc3a62999c3668dd231e835d94 (plain)
1
2
3
4
5
6
fn bug() -> impl for <'r> Fn() -> &'r () { || { &() } }
//~^ ERROR binding for associated type `Output` references lifetime `'r`

fn main() {
    let f = bug();
}