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