]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/issue-85347.stderr
New upstream version 1.65.0+dfsg1
[rustc.git] / src / test / 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`.