2017-05-17 12:19:44 +00:00
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:13:5
|
2018-04-05 05:52:26 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("foo");
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string();`
|
2018-04-05 05:52:26 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::useless-format` implied by `-D warnings`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2018-04-12 06:21:03 +00:00
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:15:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", "foo");
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string();`
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:19:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{:+}", "foo"); // warn when the format makes no difference
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string();`
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:20:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{:<}", "foo"); // warn when the format makes no difference
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string();`
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:25:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", arg);
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `arg.to_string();`
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:29:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{:+}", arg); // warn when the format makes no difference
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `arg.to_string();`
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:30:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{:<}", arg); // warn when the format makes no difference
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `arg.to_string();`
|
2018-04-12 06:21:03 +00:00
|
|
|
|
2018-10-03 18:59:59 +00:00
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:57:5
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", 42.to_string());
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: `to_string()` is enough: `42.to_string();`
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-02-24 05:30:08 +00:00
|
|
|
--> $DIR/format.rs:59:5
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", x.display().to_string());
|
2019-02-24 05:30:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: `to_string()` is enough: `x.display().to_string();`
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|