]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-68000-unicode-ident-after-missing-comma.stderr
Merge commit '1d8491b120223272b13451fc81265aa64f7f4d5b' into sync-from-rustfmt
[rust.git] / tests / ui / parser / issues / issue-68000-unicode-ident-after-missing-comma.stderr
1 error: expected `,`, or `}`, found `ö`
2   --> $DIR/issue-68000-unicode-ident-after-missing-comma.rs:2:22
3    |
4 LL |     pub bar: Vec<i32>ö
5    |                      ^ help: try adding a comma: `,`
6
7 error: expected `:`, found `}`
8   --> $DIR/issue-68000-unicode-ident-after-missing-comma.rs:4:1
9    |
10 LL | pub struct Foo {
11    |            --- while parsing this struct
12 LL |     pub bar: Vec<i32>ö
13    |                       - expected `:`
14 LL |
15 LL | }
16    | ^ unexpected token
17
18 error: aborting due to 2 previous errors
19