18 lines
479 B
Plaintext
18 lines
479 B
Plaintext
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)
|
|
| - - ^ closure was supposed to return data with lifetime `'1` but it is returning data with lifetime `'2`
|
|
| | |
|
|
| | has type `&'1 u32`
|
|
| has type `&'2 u32`
|
|
|
|
error: aborting due to previous error
|
|
|