blob: dd37d3e5593812533596f1861a6fe1998e49eb34 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/issue-52533-1.rs:9:18
|
LL | gimme(|x, y| y)
| ^ lifetime mismatch
|
= note: expected reference `&Foo<'_, '_, u32>`
found reference `&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`.