2018-07-14 22:50:30 -05:00
|
|
|
error: format argument must be a string literal
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad_hello.rs:2:14
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
2018-07-14 22:50:30 -05:00
|
|
|
LL | println!(3 + 4);
|
2018-07-03 22:48:56 -05:00
|
|
|
| ^^^^^
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2018-07-03 22:48:56 -05:00
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
|
2018-07-14 22:50:30 -05:00
|
|
|
LL | println!("{}", 3 + 4);
|
2021-06-21 21:07:19 -05:00
|
|
|
| +++++
|
2018-07-14 22:50:30 -05:00
|
|
|
|
|
|
|
error: format argument must be a string literal
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/bad_hello.rs:4:14
|
2018-07-14 22:50:30 -05:00
|
|
|
|
|
|
|
|
LL | println!(3, 4);
|
|
|
|
| ^
|
2019-10-24 00:20:58 -05:00
|
|
|
|
|
2018-07-14 22:50:30 -05:00
|
|
|
help: you might be missing a string literal to format with
|
|
|
|
|
|
2018-07-21 14:16:06 -05:00
|
|
|
LL | println!("{} {}", 3, 4);
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++++
|
2016-08-17 09:20:04 -05:00
|
|
|
|
2018-07-14 22:50:30 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2016-08-17 09:20:04 -05:00
|
|
|
|