rust/src/test/ui/codemap_tests/bad-format-args.stderr

27 lines
645 B
Plaintext
Raw Normal View History

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)