]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/pat-lt-bracket-7.stderr
Rollup merge of #63055 - Mark-Simulacrum:save-analysis-clean-2, r=Xanewok
[rust.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    |                ^ expected one of `)`, `,`, or `@` here
6
7 error[E0308]: mismatched types
8   --> $DIR/pat-lt-bracket-7.rs:8:30
9    |
10 LL | const RECOVERY_WITNESS: () = 0;
11    |                              ^ expected (), found integer
12    |
13    = note: expected type `()`
14               found type `{integer}`
15
16 error: aborting due to 2 previous errors
17
18 For more information about this error, try `rustc --explain E0308`.