rust/tests/ui/lifetimes/explicit-self-lifetime-mismatch.stderr
reddevilmidzy a4a79500b5 Cleaned up some tests
fix explicit-call-to-dtor.rs
fix explicit-call-to-supertrait-dtor.rs
merge issues/issue-17740.rs with lifetimes/explicit-self-lifetime-mismatch.rs
merge bare-fn-start.rs and trait-fn.rs into invalid-self-argument.rs
add comment tests/ui/traits/catch-unwind-cell-interior-mut
2025-12-01 19:51:20 +09:00

79 lines
2.4 KiB
Text

error[E0308]: mismatched `self` parameter type
--> $DIR/explicit-self-lifetime-mismatch.rs:11:15
|
LL | self: Foo<'b, 'a>,
| ^^^^^^^^^^^ lifetime mismatch
|
= note: expected struct `Foo<'a, 'b>`
found struct `Foo<'b, 'a>`
note: the lifetime `'b` as defined here...
--> $DIR/explicit-self-lifetime-mismatch.rs:9:10
|
LL | impl<'a, 'b> Foo<'a, 'b> {
| ^^
note: ...does not necessarily outlive the lifetime `'a` as defined here
--> $DIR/explicit-self-lifetime-mismatch.rs:9:6
|
LL | impl<'a, 'b> Foo<'a, 'b> {
| ^^
error[E0308]: mismatched `self` parameter type
--> $DIR/explicit-self-lifetime-mismatch.rs:11:15
|
LL | self: Foo<'b, 'a>,
| ^^^^^^^^^^^ lifetime mismatch
|
= note: expected struct `Foo<'a, 'b>`
found struct `Foo<'b, 'a>`
note: the lifetime `'a` as defined here...
--> $DIR/explicit-self-lifetime-mismatch.rs:9:6
|
LL | impl<'a, 'b> Foo<'a, 'b> {
| ^^
note: ...does not necessarily outlive the lifetime `'b` as defined here
--> $DIR/explicit-self-lifetime-mismatch.rs:9:10
|
LL | impl<'a, 'b> Foo<'a, 'b> {
| ^^
error[E0308]: mismatched `self` parameter type
--> $DIR/explicit-self-lifetime-mismatch.rs:29:18
|
LL | fn bar(self: &mut Bar) {
| ^^^^^^^^ lifetime mismatch
|
= note: expected struct `Bar<'a>`
found struct `Bar<'_>`
note: the anonymous lifetime defined here...
--> $DIR/explicit-self-lifetime-mismatch.rs:29:23
|
LL | fn bar(self: &mut Bar) {
| ^^^
note: ...does not necessarily outlive the lifetime `'a` as defined here
--> $DIR/explicit-self-lifetime-mismatch.rs:28:6
|
LL | impl<'a> Bar<'a> {
| ^^
error[E0308]: mismatched `self` parameter type
--> $DIR/explicit-self-lifetime-mismatch.rs:29:18
|
LL | fn bar(self: &mut Bar) {
| ^^^^^^^^ lifetime mismatch
|
= note: expected struct `Bar<'a>`
found struct `Bar<'_>`
note: the lifetime `'a` as defined here...
--> $DIR/explicit-self-lifetime-mismatch.rs:28:6
|
LL | impl<'a> Bar<'a> {
| ^^
note: ...does not necessarily outlive the anonymous lifetime defined here
--> $DIR/explicit-self-lifetime-mismatch.rs:29:23
|
LL | fn bar(self: &mut Bar) {
| ^^^
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0308`.