summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/no_effect_replace.stderr
blob: 53a28aa73b707e46ecae822e00e266bdace39e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
error: replacing text with itself
  --> $DIR/no_effect_replace.rs:4:13
   |
LL |     let _ = "12345".replace('1', "1");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::no-effect-replace` implied by `-D warnings`

error: replacing text with itself
  --> $DIR/no_effect_replace.rs:5:13
   |
LL |     let _ = "12345".replace("12", "12");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: replacing text with itself
  --> $DIR/no_effect_replace.rs:6:13
   |
LL |     let _ = String::new().replace("12", "12");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: replacing text with itself
  --> $DIR/no_effect_replace.rs:8:13
   |
LL |     let _ = "12345".replacen('1', "1", 1);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: replacing text with itself
  --> $DIR/no_effect_replace.rs:9:13
   |
LL |     let _ = "12345".replacen("12", "12", 1);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: replacing text with itself
  --> $DIR/no_effect_replace.rs:10:13
   |
LL |     let _ = String::new().replacen("12", "12", 1);
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: replacing text with itself
  --> $DIR/no_effect_replace.rs:16:13
   |
LL |     let _ = "hello".replace(&x.f(), &x.f());
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: replacing text with itself
  --> $DIR/no_effect_replace.rs:19:13
   |
LL |     let _ = "hello".replace(&y(), &y());
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 8 previous errors