@@ -23,43 +23,43 @@ LL | let _: i32 = 0i32.into();
23
23
| ^^^^^^^^^^^ help: consider removing `.into()`: `0i32`
24
24
25
25
error: identical conversion
26
- --> $DIR/identity_conversion.rs:38 :21
26
+ --> $DIR/identity_conversion.rs:49 :21
27
27
|
28
28
LL | let _: String = "foo".to_string().into();
29
29
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `"foo".to_string()`
30
30
31
31
error: identical conversion
32
- --> $DIR/identity_conversion.rs:39 :21
32
+ --> $DIR/identity_conversion.rs:50 :21
33
33
|
34
34
LL | let _: String = From::from("foo".to_string());
35
35
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `From::from()`: `"foo".to_string()`
36
36
37
37
error: identical conversion
38
- --> $DIR/identity_conversion.rs:40 :13
38
+ --> $DIR/identity_conversion.rs:51 :13
39
39
|
40
40
LL | let _ = String::from("foo".to_string());
41
41
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `"foo".to_string()`
42
42
43
43
error: identical conversion
44
- --> $DIR/identity_conversion.rs:41 :13
44
+ --> $DIR/identity_conversion.rs:52 :13
45
45
|
46
46
LL | let _ = String::from(format!("A: {:04}", 123));
47
47
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `format!("A: {:04}", 123)`
48
48
49
49
error: identical conversion
50
- --> $DIR/identity_conversion.rs:42 :13
50
+ --> $DIR/identity_conversion.rs:53 :13
51
51
|
52
52
LL | let _ = "".lines().into_iter();
53
53
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `"".lines()`
54
54
55
55
error: identical conversion
56
- --> $DIR/identity_conversion.rs:43 :13
56
+ --> $DIR/identity_conversion.rs:54 :13
57
57
|
58
58
LL | let _ = vec![1, 2, 3].into_iter().into_iter();
59
59
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `vec![1, 2, 3].into_iter()`
60
60
61
61
error: identical conversion
62
- --> $DIR/identity_conversion.rs:44 :21
62
+ --> $DIR/identity_conversion.rs:55 :21
63
63
|
64
64
LL | let _: String = format!("Hello {}", "world").into();
65
65
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `format!("Hello {}", "world")`
0 commit comments