blob: c719c00ef2239d125b0e0681f849211fec547cae [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/issue-52533-1.rs:9: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 9:11...
--> $DIR/issue-52533-1.rs:9:11
|
LL | gimme(|x, y| y)
| ^^^^^^^^
note: ...does not necessarily outlive the anonymous lifetime #3 defined on the body at 9:11
--> $DIR/issue-52533-1.rs:9:11
|
LL | gimme(|x, y| y)
| ^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.