]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/issues/issue-88818.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / parser / issues / issue-88818.stderr
1 error: missing trait in a trait impl
2 --> $DIR/issue-88818.rs:5:5
3 |
4 LL | impl for S { }
5 | ^
6 |
7 help: add a trait here
8 |
9 LL | impl Trait for S { }
10 | +++++
11 help: for an inherent impl, drop this `for`
12 |
13 LL - impl for S { }
14 LL + impl S { }
15 |
16
17 error: aborting due to previous error
18