2017-02-07 14:05:30 -06:00
|
|
|
error: redundant closure found
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/eta.rs:7:27
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
7 | let a = Some(1u8).map(|a| foo(a));
|
2017-07-24 09:28:41 -05:00
|
|
|
| ^^^^^^^^^^ help: remove closure as shown: `foo`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D redundant-closure` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: redundant closure found
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/eta.rs:8:10
|
2017-05-11 06:06:12 -05:00
|
|
|
|
|
|
|
|
8 | meta(|a| foo(a));
|
2017-07-24 09:28:41 -05:00
|
|
|
| ^^^^^^^^^^ help: remove closure as shown: `foo`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: redundant closure found
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/eta.rs:9:27
|
2017-05-11 06:06:12 -05:00
|
|
|
|
|
|
|
|
9 | let c = Some(1u8).map(|a| {1+2; foo}(a));
|
2017-07-24 09:28:41 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: remove closure as shown: `{1+2; foo}`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
error: this expression borrows a reference that is immediately dereferenced by the compiler
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/eta.rs:11:21
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 06:06:12 -05:00
|
|
|
11 | all(&[1, 2, 3], &&2, |x, y| below(x, y)); //is adjusted
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^
|
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D needless-borrow` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: redundant closure found
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/eta.rs:18:27
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 06:06:12 -05:00
|
|
|
18 | let e = Some(1u8).map(|a| generic(a));
|
2017-07-24 09:28:41 -05:00
|
|
|
| ^^^^^^^^^^^^^^ help: remove closure as shown: `generic`
|
2017-05-17 07:19:44 -05:00
|
|
|
|
2017-07-02 23:37:30 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2017-02-07 14:05:30 -06:00
|
|
|
|