2017-05-17 12:19:44 +00:00
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:20:5
|
2018-04-05 05:52:26 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("foo");
|
2021-10-14 18:28:30 +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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::useless_format)]`
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2019-04-09 14:15:48 +00:00
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:21:5
|
2019-04-09 14:15:48 +00:00
|
|
|
|
|
|
|
|
LL | format!("{{}}");
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"{}".to_string()`
|
2019-04-09 14:15:48 +00:00
|
|
|
|
2018-04-12 06:21:03 +00:00
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:22:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2019-04-09 14:15:48 +00:00
|
|
|
LL | format!("{{}} abc {{}}");
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"{} abc {}".to_string()`
|
2019-04-09 14:15:48 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:23:5
|
2019-08-23 08:01:41 +00:00
|
|
|
|
|
|
|
|
LL | / format!(
|
|
|
|
LL | | r##"foo {{}}
|
|
|
|
LL | | " bar"##
|
|
|
|
LL | | );
|
2021-10-14 18:28:30 +00:00
|
|
|
| |_____^
|
2020-10-23 20:16:59 +00:00
|
|
|
|
|
|
|
|
help: consider using `.to_string()`
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ r##"foo {}
|
2021-10-14 18:28:30 +00:00
|
|
|
LL ~ " bar"##.to_string();
|
2020-10-23 20:16:59 +00:00
|
|
|
|
|
2019-08-23 08:01:41 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:28:13
|
2021-11-04 12:52:36 +00:00
|
|
|
|
|
|
|
|
LL | let _ = format!("");
|
|
|
|
| ^^^^^^^^^^^ help: consider using `String::new()`: `String::new()`
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:30:5
|
2019-04-09 14:15:48 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", "foo");
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"foo".to_string()`
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:38:5
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", arg);
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `arg.to_string()`
|
2018-04-12 06:21:03 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:68:5
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", 42.to_string());
|
2021-10-14 18:28:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `42.to_string()`
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:70:5
|
2018-10-03 18:59:59 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | format!("{}", x.display().to_string());
|
2021-10-14 18:28:30 +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!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:74:18
|
2019-08-23 08:46:23 +00:00
|
|
|
|
|
|
|
|
LL | let _ = Some(format!("{}", a + "bar"));
|
2020-01-06 06:36:33 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `a + "bar"`
|
2019-08-23 08:46:23 +00:00
|
|
|
|
2021-04-22 09:31:13 +00:00
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:78:22
|
2021-04-22 09:31:13 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | let _s: String = format!("{}", &*v.join("\n"));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `(&*v.join("\n")).to_string()`
|
2021-04-22 09:31:13 +00:00
|
|
|
|
2022-01-17 12:29:07 +00:00
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:84:13
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
|
|
|
LL | let _ = format!("{x}");
|
|
|
|
| ^^^^^^^^^^^^^^ help: consider using `.to_string()`: `x.to_string()`
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:86:13
|
2022-01-17 12:29:07 +00:00
|
|
|
|
|
|
|
|
LL | let _ = format!("{y}", y = x);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `x.to_string()`
|
|
|
|
|
2022-07-28 17:08:22 +00:00
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:90:13
|
2022-07-28 17:08:22 +00:00
|
|
|
|
|
|
|
|
LL | let _ = format!("{abc}");
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `abc.to_string()`
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/format.rs:92:13
|
2022-07-28 17:08:22 +00:00
|
|
|
|
|
|
|
|
LL | let _ = format!("{xx}");
|
|
|
|
| ^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `xx.to_string()`
|
|
|
|
|
2022-09-21 17:02:37 +00:00
|
|
|
error: aborting due to 15 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|