rust/tests/ui/issues/issue-17758.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
394 B
Plaintext
Raw Normal View History

error: lifetime may not live long enough
2022-04-01 17:13:25 +00:00
--> $DIR/issue-17758.rs:7:9
|
LL | trait Foo<'a> {
| -- lifetime `'a` defined here
LL | fn foo(&'a self);
LL | fn bar(&self) {
| - let's call the lifetime of this reference `'1`
LL | self.foo();
| ^^^^^^^^^^ argument requires that `'1` must outlive `'a`
error: aborting due to previous error