blob: 38deb7d66de082525c32ec4086c88b130281dd09 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/issue-52533-1.rs:19:18
|
LL | gimme(|x, y| y)
| ^ lifetime mismatch
|
= note: expected type `&Foo<'_, '_, u32>`
found type `&Foo<'_, '_, u32>`
note: the anonymous lifetime #4 defined on the body at 19:11...
--> $DIR/issue-52533-1.rs:19:11
|
LL | gimme(|x, y| y)
| ^^^^^^^^
note: ...does not necessarily outlive the anonymous lifetime #3 defined on the body at 19:11
--> $DIR/issue-52533-1.rs:19:11
|
LL | gimme(|x, y| y)
| ^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.