]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issue-103869.stderr
Rollup merge of #107331 - GuillaumeGomez:cleanup-js, r=notriddle
[rust.git] / tests / ui / parser / issue-103869.stderr
1 error: expected one of `(`, `,`, `=`, `{`, or `}`, found `:`
2   --> $DIR/issue-103869.rs:2:8
3    |
4 LL |     vec: Vec<usize>,
5    |        ^ expected one of `(`, `,`, `=`, `{`, or `}`
6    |
7    = help: enum variants can be `Variant`, `Variant = <integer>`, `Variant(Type, ..., TypeN)` or `Variant { fields: Types }`
8
9 error: expected item, found `:`
10   --> $DIR/issue-103869.rs:2:8
11    |
12 LL |     vec: Vec<usize>,
13    |        ^ expected item
14
15 error: aborting due to 2 previous errors
16