summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-51351.rs
blob: 591d49584ee99fccf1bd1849d185d502263a139a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Regression test for #51351 and #52133: In the case of #51351,
// late-bound regions (like 'a) that were unused within the arguments of
// a function were overlooked and could case an ICE. In the case of #52133,
// LBR defined on the creator function needed to be added to the free regions
// of the closure, as they were not present in the closure's generic
// declarations otherwise.
//
// check-pass

fn creash<'a>() {
    let x: &'a () = &();
}

fn produce<'a>() {
   move || {
        let x: &'a () = &();
   };
}

fn main() {}