]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/recover-field-semi.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / parser / recover-field-semi.stderr
CommitLineData
f2b60f7d
FG
1error: struct fields are separated by `,`
2 --> $DIR/recover-field-semi.rs:2:13
3 |
2b03887a
FG
4LL | struct Foo {
5 | --- while parsing this struct
f2b60f7d
FG
6LL | foo: i32;
7 | ^ help: replace `;` with `,`
8
9error: union fields are separated by `,`
10 --> $DIR/recover-field-semi.rs:7:13
11 |
2b03887a
FG
12LL | union Bar {
13 | --- while parsing this union
f2b60f7d
FG
14LL | foo: i32;
15 | ^ help: replace `;` with `,`
16
17error: struct fields are separated by `,`
18 --> $DIR/recover-field-semi.rs:12:19
19 |
20LL | Qux { foo: i32; }
2b03887a
FG
21 | --- ^ help: replace `;` with `,`
22 | |
23 | while parsing this struct
f2b60f7d
FG
24
25error: unions cannot have zero fields
26 --> $DIR/recover-field-semi.rs:6:1
27 |
28LL | / union Bar {
29LL | | foo: i32;
30LL | |
31LL | | }
32 | |_^
33
34error: aborting due to 4 previous errors
35