summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/in-trait/async-lifetimes-and-bounds.stderr
blob: 0f02420274333badbcbc3d84b3c0fd159a8bdcd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0309]: the parameter type `Self` may not live long enough
  --> $DIR/async-lifetimes-and-bounds.rs:11:43
   |
LL |     async fn foo(&'a self, key: &'b T) -> (&'a Self, &'b T) where T: Debug + Sized;
   |                                           ^^^^^^^^^^^^^^^^^
   |
   = help: consider adding an explicit lifetime bound `Self: 'a`...
   = note: ...so that the reference type `&'a Self` does not outlive the data it points at

error[E0309]: the parameter type `T` may not live long enough
  --> $DIR/async-lifetimes-and-bounds.rs:11:43
   |
LL |     async fn foo(&'a self, key: &'b T) -> (&'a Self, &'b T) where T: Debug + Sized;
   |                                           ^^^^^^^^^^^^^^^^^ ...so that the reference type `&'b T` does not outlive the data it points at
   |
help: consider adding an explicit lifetime bound...
   |
LL | trait MyTrait<'a, 'b, T: 'b> {
   |                        ++++

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0309`.