mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
11 lines
303 B
Plaintext
11 lines
303 B
Plaintext
error: expected one of `.`, `;`, `?`, `else`, or an operator, found `,`
|
|
--> $DIR/issue-72253.rs:4:9
|
|
|
|
|
LL | .arg("1")
|
|
| - expected one of `.`, `;`, `?`, `else`, or an operator
|
|
LL | ,arg("2")
|
|
| ^ unexpected token
|
|
|
|
error: aborting due to previous error
|
|
|