Update test cases
This commit is contained in:
parent
ce1a521012
commit
75d1e303af
11 changed files with 54 additions and 54 deletions
|
|
@ -4,11 +4,11 @@ error[E0495]: cannot infer an appropriate lifetime for autoref due to conflictin
|
|||
LL | self.a();
|
||||
| ^
|
||||
|
|
||||
note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the method body at 3:5...
|
||||
--> $DIR/issue-16683.rs:3:5
|
||||
note: first, the lifetime cannot outlive the anonymous lifetime defined on the method body at 3:10...
|
||||
--> $DIR/issue-16683.rs:3:10
|
||||
|
|
||||
LL | fn b(&self) {
|
||||
| ^^^^^^^^^^^
|
||||
| ^^^^^
|
||||
note: ...so that reference does not outlive borrowed content
|
||||
--> $DIR/issue-16683.rs:4:9
|
||||
|
|
||||
|
|
|
|||
|
|
@ -6,11 +6,11 @@ LL | fn bar(self: &mut Foo) {
|
|||
|
|
||||
= note: expected struct `Foo<'a>`
|
||||
found struct `Foo<'_>`
|
||||
note: the anonymous lifetime #2 defined on the method body at 6:5...
|
||||
--> $DIR/issue-17740.rs:6:5
|
||||
note: the anonymous lifetime defined on the method body at 6:23...
|
||||
--> $DIR/issue-17740.rs:6:23
|
||||
|
|
||||
LL | fn bar(self: &mut Foo) {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^
|
||||
| ^^^
|
||||
note: ...does not necessarily outlive the lifetime `'a` as defined on the impl at 5:7
|
||||
--> $DIR/issue-17740.rs:5:7
|
||||
|
|
||||
|
|
@ -30,11 +30,11 @@ note: the lifetime `'a` as defined on the impl at 5:7...
|
|||
|
|
||||
LL | impl <'a> Foo<'a>{
|
||||
| ^^
|
||||
note: ...does not necessarily outlive the anonymous lifetime #2 defined on the method body at 6:5
|
||||
--> $DIR/issue-17740.rs:6:5
|
||||
note: ...does not necessarily outlive the anonymous lifetime defined on the method body at 6:23
|
||||
--> $DIR/issue-17740.rs:6:23
|
||||
|
|
||||
LL | fn bar(self: &mut Foo) {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^
|
||||
| ^^^
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@ error[E0495]: cannot infer an appropriate lifetime for autoref due to conflictin
|
|||
LL | self.foo();
|
||||
| ^^^
|
||||
|
|
||||
note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the method body at 6:5...
|
||||
--> $DIR/issue-17758.rs:6:5
|
||||
note: first, the lifetime cannot outlive the anonymous lifetime defined on the method body at 6:12...
|
||||
--> $DIR/issue-17758.rs:6:12
|
||||
|
|
||||
LL | fn bar(&self) {
|
||||
| ^^^^^^^^^^^^^
|
||||
| ^^^^^
|
||||
note: ...so that reference does not outlive borrowed content
|
||||
--> $DIR/issue-17758.rs:7:9
|
||||
|
|
||||
|
|
|
|||
|
|
@ -6,11 +6,11 @@ LL | fn say(self: &Pair<&str, isize>) {
|
|||
|
|
||||
= note: expected struct `Pair<&str, _>`
|
||||
found struct `Pair<&str, _>`
|
||||
note: the anonymous lifetime #2 defined on the method body at 8:5...
|
||||
--> $DIR/issue-17905-2.rs:8:5
|
||||
note: the anonymous lifetime defined on the method body at 8:24...
|
||||
--> $DIR/issue-17905-2.rs:8:24
|
||||
|
|
||||
LL | fn say(self: &Pair<&str, isize>) {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
| ^^^^
|
||||
note: ...does not necessarily outlive the lifetime `'_` as defined on the impl at 5:5
|
||||
--> $DIR/issue-17905-2.rs:5:5
|
||||
|
|
||||
|
|
@ -30,11 +30,11 @@ note: the lifetime `'_` as defined on the impl at 5:5...
|
|||
|
|
||||
LL | &str,
|
||||
| ^
|
||||
note: ...does not necessarily outlive the anonymous lifetime #2 defined on the method body at 8:5
|
||||
--> $DIR/issue-17905-2.rs:8:5
|
||||
note: ...does not necessarily outlive the anonymous lifetime defined on the method body at 8:24
|
||||
--> $DIR/issue-17905-2.rs:8:24
|
||||
|
|
||||
LL | fn say(self: &Pair<&str, isize>) {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
| ^^^^
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@ error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` d
|
|||
LL | fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
note: first, the lifetime cannot outlive the anonymous lifetime #2 defined on the method body at 28:5...
|
||||
--> $DIR/issue-20831-debruijn.rs:28:5
|
||||
note: first, the lifetime cannot outlive the anonymous lifetime defined on the method body at 28:58...
|
||||
--> $DIR/issue-20831-debruijn.rs:28:58
|
||||
|
|
||||
LL | fn subscribe(&mut self, t : Box<dyn Subscriber<Input=<Self as Publisher>::Output> + 'a>) {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
note: ...but the lifetime must also be valid for the lifetime `'a` as defined on the impl at 26:6...
|
||||
--> $DIR/issue-20831-debruijn.rs:26:6
|
||||
|
|
||||
|
|
|
|||
|
|
@ -6,11 +6,11 @@ LL | fn select(&self) -> BufferViewHandle<R>;
|
|||
|
|
||||
= note: expected type `Resources<'_>`
|
||||
found type `Resources<'a>`
|
||||
note: the anonymous lifetime #1 defined on the method body at 5:5...
|
||||
--> $DIR/issue-27942.rs:5:5
|
||||
note: the anonymous lifetime defined on the method body at 5:15...
|
||||
--> $DIR/issue-27942.rs:5:15
|
||||
|
|
||||
LL | fn select(&self) -> BufferViewHandle<R>;
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
| ^^^^^
|
||||
note: ...does not necessarily outlive the lifetime `'a` as defined on the trait at 3:18
|
||||
--> $DIR/issue-27942.rs:3:18
|
||||
|
|
||||
|
|
@ -30,11 +30,11 @@ note: the lifetime `'a` as defined on the trait at 3:18...
|
|||
|
|
||||
LL | pub trait Buffer<'a, R: Resources<'a>> {
|
||||
| ^^
|
||||
note: ...does not necessarily outlive the anonymous lifetime #1 defined on the method body at 5:5
|
||||
--> $DIR/issue-27942.rs:5:5
|
||||
note: ...does not necessarily outlive the anonymous lifetime defined on the method body at 5:15
|
||||
--> $DIR/issue-27942.rs:5:15
|
||||
|
|
||||
LL | fn select(&self) -> BufferViewHandle<R>;
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
| ^^^^^
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue