]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/impl-parsing.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / parser / impl-parsing.stderr
1 error: missing `for` in a trait impl
2 --> $DIR/impl-parsing.rs:4:11
3 |
4 LL | impl Trait Type {}
5 | ^ help: add `for` here
6
7 error: missing `for` in a trait impl
8 --> $DIR/impl-parsing.rs:5:11
9 |
10 LL | impl Trait .. {}
11 | ^ help: add `for` here
12
13 error: expected a trait, found type
14 --> $DIR/impl-parsing.rs:6:6
15 |
16 LL | impl ?Sized for Type {}
17 | ^^^^^^
18
19 error: expected a trait, found type
20 --> $DIR/impl-parsing.rs:7:6
21 |
22 LL | impl ?Sized for .. {}
23 | ^^^^^^
24
25 error: `default` is not followed by an item
26 --> $DIR/impl-parsing.rs:9:1
27 |
28 LL | default unsafe FAIL
29 | ^^^^^^^ the `default` qualifier
30 |
31 = note: only `fn`, `const`, `type`, or `impl` items may be prefixed by `default`
32
33 error: expected item, found keyword `unsafe`
34 --> $DIR/impl-parsing.rs:9:9
35 |
36 LL | default unsafe FAIL
37 | ^^^^^^ expected item
38
39 error: aborting due to 6 previous errors
40