]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/issue-85347.stderr
Rollup merge of #106661 - mjguzik:linux_statx, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / issue-85347.stderr
1 error[E0107]: this associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
2   --> $DIR/issue-85347.rs:3:42
3    |
4 LL |     type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
5    |                                          ^^^ expected 1 lifetime argument
6    |
7 note: associated type defined here, with 1 lifetime parameter: `'a`
8   --> $DIR/issue-85347.rs:3:10
9    |
10 LL |     type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
11    |          ^^^ --
12 help: add missing lifetime argument
13    |
14 LL |     type Bar<'a>: Deref<Target = <Self>::Bar<'a, Target = Self>>;
15    |                                              +++
16
17 error[E0229]: associated type bindings are not allowed here
18   --> $DIR/issue-85347.rs:3:46
19    |
20 LL |     type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
21    |                                              ^^^^^^^^^^^^^ associated type not allowed here
22
23 error: aborting due to 2 previous errors
24
25 Some errors have detailed explanations: E0107, E0229.
26 For more information about an error, try `rustc --explain E0107`.