54 lines
1.6 KiB
Plaintext
54 lines
1.6 KiB
Plaintext
error: replacing text with itself
|
|
--> tests/ui/no_effect_replace.rs:6:13
|
|
|
|
|
LL | let _ = "12345".replace('1', "1");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::no-effect-replace` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::no_effect_replace)]`
|
|
|
|
error: replacing text with itself
|
|
--> tests/ui/no_effect_replace.rs:9:13
|
|
|
|
|
LL | let _ = "12345".replace("12", "12");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: replacing text with itself
|
|
--> tests/ui/no_effect_replace.rs:11:13
|
|
|
|
|
LL | let _ = String::new().replace("12", "12");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: replacing text with itself
|
|
--> tests/ui/no_effect_replace.rs:14:13
|
|
|
|
|
LL | let _ = "12345".replacen('1', "1", 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: replacing text with itself
|
|
--> tests/ui/no_effect_replace.rs:16:13
|
|
|
|
|
LL | let _ = "12345".replacen("12", "12", 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: replacing text with itself
|
|
--> tests/ui/no_effect_replace.rs:18:13
|
|
|
|
|
LL | let _ = String::new().replacen("12", "12", 1);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: replacing text with itself
|
|
--> tests/ui/no_effect_replace.rs:25:13
|
|
|
|
|
LL | let _ = "hello".replace(&x.f(), &x.f());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: replacing text with itself
|
|
--> tests/ui/no_effect_replace.rs:29:13
|
|
|
|
|
LL | let _ = "hello".replace(&y(), &y());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 8 previous errors
|
|
|