]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/useless_conversion.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / useless_conversion.stderr
CommitLineData
f20569fa
XL
1error: useless conversion to the same type: `T`
2 --> $DIR/useless_conversion.rs:7:13
3 |
4LL | let _ = T::from(val);
5 | ^^^^^^^^^^^^ help: consider removing `T::from()`: `val`
6 |
7note: the lint level is defined here
8 --> $DIR/useless_conversion.rs:3:9
9 |
10LL | #![deny(clippy::useless_conversion)]
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13error: useless conversion to the same type: `T`
14 --> $DIR/useless_conversion.rs:8:5
15 |
16LL | val.into()
17 | ^^^^^^^^^^ help: consider removing `.into()`: `val`
18
19error: useless conversion to the same type: `i32`
20 --> $DIR/useless_conversion.rs:20:22
21 |
22LL | let _: i32 = 0i32.into();
23 | ^^^^^^^^^^^ help: consider removing `.into()`: `0i32`
24
25error: useless conversion to the same type: `std::string::String`
26 --> $DIR/useless_conversion.rs:61:21
27 |
28LL | let _: String = "foo".to_string().into();
29 | ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `"foo".to_string()`
30
31error: useless conversion to the same type: `std::string::String`
32 --> $DIR/useless_conversion.rs:62:21
33 |
34LL | let _: String = From::from("foo".to_string());
35 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `From::from()`: `"foo".to_string()`
36
37error: useless conversion to the same type: `std::string::String`
38 --> $DIR/useless_conversion.rs:63:13
39 |
40LL | let _ = String::from("foo".to_string());
41 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `"foo".to_string()`
42
43error: useless conversion to the same type: `std::string::String`
44 --> $DIR/useless_conversion.rs:64:13
45 |
46LL | let _ = String::from(format!("A: {:04}", 123));
47 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `format!("A: {:04}", 123)`
48
49error: useless conversion to the same type: `std::str::Lines`
50 --> $DIR/useless_conversion.rs:65:13
51 |
52LL | let _ = "".lines().into_iter();
53 | ^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `"".lines()`
54
55error: useless conversion to the same type: `std::vec::IntoIter<i32>`
56 --> $DIR/useless_conversion.rs:66:13
57 |
58LL | let _ = vec![1, 2, 3].into_iter().into_iter();
59 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `vec![1, 2, 3].into_iter()`
60
61error: useless conversion to the same type: `std::string::String`
62 --> $DIR/useless_conversion.rs:67:21
63 |
64LL | let _: String = format!("Hello {}", "world").into();
65 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `format!("Hello {}", "world")`
66
67error: useless conversion to the same type: `i32`
68 --> $DIR/useless_conversion.rs:72:13
69 |
70LL | let _ = i32::from(a + b) * 3;
71 | ^^^^^^^^^^^^^^^^ help: consider removing `i32::from()`: `(a + b)`
72
73error: aborting due to 11 previous errors
74