summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/elided-in-expr-position.stderr
blob: b395a1cfd8a62c6afdc0be95c5e3d3e8fd8da104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
error[E0107]: missing generics for associated type `Trait::Assoc`
  --> $DIR/elided-in-expr-position.rs:10:26
   |
LL |     fn g(&self) -> Self::Assoc;
   |                          ^^^^^ expected 1 lifetime argument
   |
note: associated type defined here, with 1 lifetime parameter: `'a`
  --> $DIR/elided-in-expr-position.rs:5:10
   |
LL |     type Assoc<'a> where Self: 'a;
   |          ^^^^^ --
help: add missing lifetime argument
   |
LL |     fn g(&self) -> Self::Assoc<'a>;
   |                          ~~~~~~~~~

error[E0107]: missing generics for associated type `Trait::Assoc`
  --> $DIR/elided-in-expr-position.rs:32:26
   |
LL |     fn g(&self) -> Self::Assoc {
   |                          ^^^^^ expected 1 lifetime argument
   |
note: associated type defined here, with 1 lifetime parameter: `'a`
  --> $DIR/elided-in-expr-position.rs:5:10
   |
LL |     type Assoc<'a> where Self: 'a;
   |          ^^^^^ --
help: add missing lifetime argument
   |
LL |     fn g(&self) -> Self::Assoc<'a> {
   |                          ~~~~~~~~~

error: aborting due to 2 previous errors

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