rust/src/test/ui/codemap_tests/bad-format-args.stderr
Michael Kohl 5558c64f33 Change error count messages
See #33525 for details.
2017-05-24 16:14:38 +07:00

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)