2017-05-17 07:19:44 -05:00
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:11:5
|
2018-04-05 00:52:26 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("foo");
|
2018-04-05 00:52:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string()`
|
|
|
|
|
|
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
|
|
|
|
2018-04-12 01:21:03 -05:00
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:13:5
|
2018-04-12 01:21:03 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("{}", "foo");
|
2018-04-12 01:21:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string()`
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:17:5
|
2018-04-12 01:21:03 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("{:+}", "foo"); // warn when the format makes no difference
|
2018-04-12 01:21:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string()`
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:18:5
|
2018-04-12 01:21:03 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("{:<}", "foo"); // warn when the format makes no difference
|
2018-04-12 01:21:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `"foo".to_string()`
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:23:5
|
2018-04-12 01:21:03 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("{}", arg);
|
2018-04-12 01:21:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `arg.to_string()`
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:27:5
|
2018-04-12 01:21:03 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("{:+}", arg); // warn when the format makes no difference
|
2018-04-12 01:21:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `arg.to_string()`
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:28:5
|
2018-04-12 01:21:03 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("{:<}", arg); // warn when the format makes no difference
|
2018-04-12 01:21:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider using .to_string(): `arg.to_string()`
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
2018-10-03 13:59:59 -05:00
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:55:5
|
2018-10-03 13:59:59 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("{}", 42.to_string());
|
2018-10-03 13:59:59 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: `to_string()` is enough: `42.to_string()`
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: useless use of `format!`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/format.rs:57:5
|
2018-10-03 13:59:59 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | format!("{}", x.display().to_string());
|
2018-10-03 13:59:59 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: `to_string()` is enough: `x.display().to_string()`
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|