summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-68000-unicode-ident-after-missing-comma.stderr
blob: adabb68593c090524cf070a4220b7e6053317984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: expected `,`, or `}`, found `ö`
  --> $DIR/issue-68000-unicode-ident-after-missing-comma.rs:2:22
   |
LL |     pub bar: Vec<i32>ö
   |                      ^ help: try adding a comma: `,`

error: expected `:`, found `}`
  --> $DIR/issue-68000-unicode-ident-after-missing-comma.rs:4:1
   |
LL | pub struct Foo {
   |            --- while parsing this struct
LL |     pub bar: Vec<i32>ö
   |                       - expected `:`
LL |
LL | }
   | ^ unexpected token

error: aborting due to 2 previous errors