mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
14 lines
447 B
Plaintext
14 lines
447 B
Plaintext
error: expected one of `!`, `(`, `)`, `+`, `,`, `::`, or `<`, found `y`
|
|
--> $DIR/issue-76597.rs:7:38
|
|
|
|
|
LL | ... x: u8
|
|
| -
|
|
| |
|
|
| expected one of 7 possible tokens
|
|
| help: missing `,`
|
|
LL | ... y: u8,
|
|
| ^ unexpected token
|
|
|
|
error: aborting due to 1 previous error
|
|
|