blob: ceb5347ca80367fdd92c4450463c9924b05a8292 [file] [log] [blame]
error[E0495]: cannot infer an appropriate lifetime for autoref due to conflicting requirements
--> $DIR/issue-16683.rs:14:14
|
LL | self.a(); //~ ERROR cannot infer
| ^
|
note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the method body at 13:5...
--> $DIR/issue-16683.rs:13:5
|
LL | / fn b(&self) {
LL | | self.a(); //~ ERROR cannot infer
LL | | }
| |_____^
note: ...so that reference does not outlive borrowed content
--> $DIR/issue-16683.rs:14:9
|
LL | self.a(); //~ ERROR cannot infer
| ^^^^
note: but, the lifetime must be valid for the lifetime 'a as defined on the trait at 11:9...
--> $DIR/issue-16683.rs:11:9
|
LL | trait T<'a> {
| ^^
= note: ...so that the types are compatible:
expected &'a Self
found &Self
error: aborting due to previous error
For more information about this error, try `rustc --explain E0495`.