mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
17 lines
410 B
Plaintext
17 lines
410 B
Plaintext
error: expected one of `)`, `,`, `.`, `?`, or an operator, found `;`
|
|
--> $DIR/token-error-correct-4.rs:9:12
|
|
|
|
|
LL | setsuna(kazusa();
|
|
| ^ ^ help: `)` may belong here
|
|
| |
|
|
| unclosed delimiter
|
|
|
|
error: expected expression, found `)`
|
|
--> $DIR/token-error-correct-4.rs:10:1
|
|
|
|
|
LL | }
|
|
| ^ expected expression
|
|
|
|
error: aborting due to 2 previous errors
|
|
|