]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/eta.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / eta.stderr
CommitLineData
f20569fa
XL
1error: redundant closure
2 --> $DIR/eta.rs:32:27
3 |
4LL | let a = Some(1u8).map(|a| foo(a));
5 | ^^^^^^^^^^ help: replace the closure with the function itself: `foo`
6 |
7 = note: `-D clippy::redundant-closure` implied by `-D warnings`
8
9error: redundant closure
10 --> $DIR/eta.rs:33:10
11 |
12LL | meta(|a| foo(a));
13 | ^^^^^^^^^^ help: replace the closure with the function itself: `foo`
14
15error: redundant closure
16 --> $DIR/eta.rs:37:40
17 |
18LL | let _: Option<Vec<u8>> = true.then(|| vec![]); // special case vec!
19 | ^^^^^^^^^ help: replace the closure with `Vec::new`: `std::vec::Vec::new`
20
21error: this expression borrows a reference (`&u8`) that is immediately dereferenced by the compiler
22 --> $DIR/eta.rs:39:21
23 |
24LL | all(&[1, 2, 3], &&2, |x, y| below(x, y)); //is adjusted
25 | ^^^ help: change this to: `&2`
26 |
27 = note: `-D clippy::needless-borrow` implied by `-D warnings`
28
29error: redundant closure
30 --> $DIR/eta.rs:46:27
31 |
32LL | let e = Some(1u8).map(|a| generic(a));
33 | ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `generic`
34
35error: redundant closure
17df50a5 36 --> $DIR/eta.rs:92:51
f20569fa
XL
37 |
38LL | let e = Some(TestStruct { some_ref: &i }).map(|a| a.foo());
39 | ^^^^^^^^^^^ help: replace the closure with the method itself: `TestStruct::foo`
40 |
41 = note: `-D clippy::redundant-closure-for-method-calls` implied by `-D warnings`
42
43error: redundant closure
17df50a5 44 --> $DIR/eta.rs:94:51
f20569fa
XL
45 |
46LL | let e = Some(TestStruct { some_ref: &i }).map(|a| a.trait_foo());
47 | ^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `TestTrait::trait_foo`
48
49error: redundant closure
17df50a5 50 --> $DIR/eta.rs:97:42
f20569fa
XL
51 |
52LL | let e = Some(&mut vec![1, 2, 3]).map(|v| v.clear());
53 | ^^^^^^^^^^^^^ help: replace the closure with the method itself: `std::vec::Vec::clear`
54
55error: redundant closure
17df50a5 56 --> $DIR/eta.rs:102:29
f20569fa
XL
57 |
58LL | let e = Some("str").map(|s| s.to_string());
59 | ^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `std::string::ToString::to_string`
60
61error: redundant closure
17df50a5 62 --> $DIR/eta.rs:104:27
f20569fa
XL
63 |
64LL | let e = Some('a').map(|s| s.to_uppercase());
65 | ^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `char::to_uppercase`
66
67error: redundant closure
17df50a5 68 --> $DIR/eta.rs:107:65
f20569fa
XL
69 |
70LL | let e: std::vec::Vec<char> = vec!['a', 'b', 'c'].iter().map(|c| c.to_ascii_uppercase()).collect();
71 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `char::to_ascii_uppercase`
72
73error: redundant closure
17df50a5 74 --> $DIR/eta.rs:190:27
f20569fa
XL
75 |
76LL | let a = Some(1u8).map(|a| foo_ptr(a));
77 | ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `foo_ptr`
78
79error: redundant closure
17df50a5 80 --> $DIR/eta.rs:195:27
f20569fa
XL
81 |
82LL | let a = Some(1u8).map(|a| closure(a));
83 | ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `closure`
84
136023e0
XL
85error: redundant closure
86 --> $DIR/eta.rs:227:28
87 |
88LL | x.into_iter().for_each(|x| add_to_res(x));
89 | ^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `&mut add_to_res`
90
91error: redundant closure
92 --> $DIR/eta.rs:228:28
93 |
94LL | y.into_iter().for_each(|x| add_to_res(x));
95 | ^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `&mut add_to_res`
96
97error: redundant closure
98 --> $DIR/eta.rs:229:28
99 |
100LL | z.into_iter().for_each(|x| add_to_res(x));
101 | ^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `add_to_res`
102
103error: redundant closure
104 --> $DIR/eta.rs:236:21
105 |
106LL | Some(1).map(|n| closure(n));
107 | ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `&mut closure`
108
109error: aborting due to 17 previous errors
f20569fa 110