5558c64f33
See #33525 for details.
27 lines
645 B
Plaintext
27 lines
645 B
Plaintext
error: requires at least a format string argument
|
|
--> $DIR/bad-format-args.rs:12:5
|
|
|
|
|
12 | format!();
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
error: expected token: `,`
|
|
--> $DIR/bad-format-args.rs:13:5
|
|
|
|
|
13 | format!("" 1);
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
error: expected token: `,`
|
|
--> $DIR/bad-format-args.rs:14:5
|
|
|
|
|
14 | format!("", 1 1);
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: this error originates in a macro outside of the current crate
|
|
|
|
error: aborting due to previous error(s)
|
|
|