2020-01-10 00:10:18 -06:00
|
|
|
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
|
|
|
|
|
|
2022-09-26 09:13:38 -05:00
|
|
|
LL | pub struct Foo {
|
|
|
|
| --- while parsing this struct
|
2020-01-10 00:10:18 -06:00
|
|
|
LL | pub bar: Vec<i32>ö
|
|
|
|
| - expected `:`
|
|
|
|
LL |
|
|
|
|
LL | }
|
|
|
|
| ^ unexpected token
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|