mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
516 B
Plaintext
20 lines
516 B
Plaintext
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
|
|
|