]> git.lizzy.rs Git - rust.git/blob - src/test/ui/codemap_tests/bad-format-args.stderr
Account for --remap-path-prefix in save-analysis
[rust.git] / src / test / ui / codemap_tests / bad-format-args.stderr
1 error: requires at least a format string argument
2   --> $DIR/bad-format-args.rs:12:5
3    |
4 LL |     format!(); //~ ERROR requires at least a format string argument
5    |     ^^^^^^^^^^
6    |
7    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
8
9 error: expected token: `,`
10   --> $DIR/bad-format-args.rs:13:5
11    |
12 LL |     format!("" 1); //~ ERROR expected token: `,`
13    |     ^^^^^^^^^^^^^^
14    |
15    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
16
17 error: expected token: `,`
18   --> $DIR/bad-format-args.rs:14:5
19    |
20 LL |     format!("", 1 1); //~ ERROR expected token: `,`
21    |     ^^^^^^^^^^^^^^^^^
22    |
23    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
24
25 error: aborting due to 3 previous errors
26