]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/pat-lt-bracket-7.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / parser / pat-lt-bracket-7.stderr
1 error: expected one of `)`, `,`, `@`, or `|`, found `[`
2 --> $DIR/pat-lt-bracket-7.rs:5:16
3 |
4 LL | for Thing(x[]) in foo {}
5 | ^
6 | |
7 | expected one of `)`, `,`, `@`, or `|`
8 | help: missing `,`
9
10 error[E0308]: mismatched types
11 --> $DIR/pat-lt-bracket-7.rs:9:30
12 |
13 LL | const RECOVERY_WITNESS: () = 0;
14 | ^ expected `()`, found integer
15
16 error: aborting due to 2 previous errors
17
18 For more information about this error, try `rustc --explain E0308`.