rust/tests/ui/eta.stderr

87 lines
3.3 KiB
Text
Raw Normal View History

2021-03-08 20:05:13 +01:00
error: redundant closure
2021-03-08 19:59:58 +01:00
--> $DIR/eta.rs:32:27
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | let a = Some(1u8).map(|a| foo(a));
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^ help: replace the closure with the function itself: `foo`
2018-10-06 18:18:06 +02:00
|
= note: `-D clippy::redundant-closure` implied by `-D warnings`
2021-03-08 20:05:13 +01:00
error: redundant closure
2021-03-08 19:59:58 +01:00
--> $DIR/eta.rs:33:10
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | meta(|a| foo(a));
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^ help: replace the closure with the function itself: `foo`
2021-03-08 20:05:13 +01:00
error: redundant closure
2021-03-08 19:59:58 +01:00
--> $DIR/eta.rs:37:40
|
LL | let _: Option<Vec<u8>> = true.then(|| vec![]); // special case vec!
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^ help: replace the closure with `Vec::new`: `std::vec::Vec::new`
2021-03-08 19:59:58 +01:00
error: this expression borrows a reference (`&u8`) that is immediately dereferenced by the compiler
2021-03-08 19:59:58 +01:00
--> $DIR/eta.rs:39:21
|
2018-12-27 16:57:55 +01:00
LL | all(&[1, 2, 3], &&2, |x, y| below(x, y)); //is adjusted
2017-09-16 04:27:46 +02:00
| ^^^ help: change this to: `&2`
|
= note: `-D clippy::needless-borrow` implied by `-D warnings`
2021-03-08 20:05:13 +01:00
error: redundant closure
2021-03-08 19:59:58 +01:00
--> $DIR/eta.rs:46:27
|
2018-12-27 16:57:55 +01:00
LL | let e = Some(1u8).map(|a| generic(a));
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `generic`
2021-03-08 20:05:13 +01:00
error: redundant closure
--> $DIR/eta.rs:92:51
|
2019-02-10 21:23:04 +01:00
LL | let e = Some(TestStruct { some_ref: &i }).map(|a| a.foo());
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^ help: replace the closure with the method itself: `TestStruct::foo`
|
2019-05-16 20:18:07 +02:00
= note: `-D clippy::redundant-closure-for-method-calls` implied by `-D warnings`
2021-03-08 20:05:13 +01:00
error: redundant closure
--> $DIR/eta.rs:94:51
|
2019-02-10 21:23:04 +01:00
LL | let e = Some(TestStruct { some_ref: &i }).map(|a| a.trait_foo());
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `TestTrait::trait_foo`
2021-03-08 20:05:13 +01:00
error: redundant closure
--> $DIR/eta.rs:97:42
|
2019-02-10 21:23:04 +01:00
LL | let e = Some(&mut vec![1, 2, 3]).map(|v| v.clear());
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^^^ help: replace the closure with the method itself: `std::vec::Vec::clear`
2021-03-08 20:05:13 +01:00
error: redundant closure
--> $DIR/eta.rs:102:29
|
LL | let e = Some("str").map(|s| s.to_string());
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `std::string::ToString::to_string`
2021-03-08 20:05:13 +01:00
error: redundant closure
--> $DIR/eta.rs:104:27
|
LL | let e = Some('a').map(|s| s.to_uppercase());
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `char::to_uppercase`
2021-03-08 20:05:13 +01:00
error: redundant closure
--> $DIR/eta.rs:107:65
|
2019-02-10 21:23:04 +01:00
LL | let e: std::vec::Vec<char> = vec!['a', 'b', 'c'].iter().map(|c| c.to_ascii_uppercase()).collect();
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the method itself: `char::to_ascii_uppercase`
2021-03-08 20:05:13 +01:00
error: redundant closure
--> $DIR/eta.rs:190:27
|
LL | let a = Some(1u8).map(|a| foo_ptr(a));
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `foo_ptr`
2021-03-08 20:05:13 +01:00
error: redundant closure
--> $DIR/eta.rs:195:27
|
LL | let a = Some(1u8).map(|a| closure(a));
2021-03-08 20:05:13 +01:00
| ^^^^^^^^^^^^^^ help: replace the closure with the function itself: `closure`
2021-03-08 19:59:58 +01:00
error: aborting due to 13 previous errors
2018-01-16 17:06:27 +01:00