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
|
|
|
|
2019-04-09 14:15:48 +00:00
|
|
|
error: useless use of `format!`
|
|
|
|
--> $DIR/format.rs:14:5
|
|
|
|
|
|
|
|
|
LL | format!("{{}}");
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: consider using .to_string(): `"{}".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:15:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2019-04-09 14:15:48 +00:00
|
|
|
LL | format!("{{}} abc {{}}");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `"{} abc {}".to_string();`
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-08-23 08:01:41 +00:00
|
|
|
--> $DIR/format.rs:16:5
|
|
|
|
|
|
|
|
|
LL | / format!(
|
|
|
|
LL | | r##"foo {{}}
|
|
|
|
LL | | " bar"##
|
|
|
|
LL | | );
|
|
|
|
| |______^ help: consider using .to_string(): `"foo {}/n/" bar".to_string();`
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
|
|
|
--> $DIR/format.rs:21:5
|
2019-04-09 14:15:48 +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-08-23 08:01:41 +00:00
|
|
|
--> $DIR/format.rs:25:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2019-03-10 21:07:10 +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-08-23 08:01:41 +00:00
|
|
|
--> $DIR/format.rs:26:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2019-03-10 21:07:10 +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-08-23 08:01:41 +00:00
|
|
|
--> $DIR/format.rs:31: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-08-23 08:01:41 +00:00
|
|
|
--> $DIR/format.rs:35:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2019-03-10 21:07:10 +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-08-23 08:01:41 +00:00
|
|
|
--> $DIR/format.rs:36:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2019-03-10 21:07:10 +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-08-23 08:01:41 +00:00
|
|
|
--> $DIR/format.rs:63:5
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", 42.to_string());
|
2019-08-23 05:26:24 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `42.to_string();`
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-08-23 08:01:41 +00:00
|
|
|
--> $DIR/format.rs:65:5
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", x.display().to_string());
|
2019-08-23 05:26:24 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `x.display().to_string();`
|
2018-10-03 18:59:59 +00:00
|
|
|
|
2019-08-23 08:46:23 +00:00
|
|
|
error: useless use of `format!`
|
|
|
|
--> $DIR/format.rs:69:18
|
|
|
|
|
|
|
|
|
LL | let _ = Some(format!("{}", a + "bar"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `a + "bar"`
|
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|