2021-12-31 15:55:34 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-05-22 00:02:55 -05:00
|
|
|
--> $DIR/issue-16683.rs:8:9
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
2021-10-03 15:25:26 -05:00
|
|
|
LL | trait T<'a> {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
LL | fn a(&'a self) -> &'a bool;
|
2019-01-27 05:03:21 -06:00
|
|
|
LL | fn b(&self) {
|
2021-12-31 15:55:34 -06:00
|
|
|
| - let's call the lifetime of this reference `'1`
|
2019-01-27 05:03:21 -06:00
|
|
|
LL | self.a();
|
2021-12-31 15:55:34 -06:00
|
|
|
| ^^^^^^^^ argument requires that `'1` must outlive `'a`
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|