2018-07-23 06:09:30 -05:00
|
|
|
warning: not reporting region error due to nll
|
|
|
|
--> $DIR/issue-52533.rs:15:16
|
|
|
|
|
|
|
|
|
LL | foo(|a, b| b)
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: unsatisfied lifetime constraints
|
|
|
|
--> $DIR/issue-52533.rs:15:16
|
|
|
|
|
|
|
|
|
LL | foo(|a, b| b)
|
2018-07-23 09:27:24 -05:00
|
|
|
| - - ^ closure was supposed to return data with lifetime `'1` but it is returning data with lifetime `'2`
|
2018-07-23 06:09:30 -05:00
|
|
|
| | |
|
2018-07-23 10:41:18 -05:00
|
|
|
| | has type `&'1 u32`
|
|
|
|
| has type `&'2 u32`
|
2018-07-23 06:09:30 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|