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