2017-12-10 13:47:55 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-24036.rs:13:9
|
|
|
|
|
|
|
|
|
13 | x = |c| c + 1;
|
|
|
|
| ^^^^^^^^^ expected closure, found a different closure
|
|
|
|
|
|
|
|
|
= note: expected type `[closure@$DIR/issue-24036.rs:12:17: 12:26]`
|
|
|
|
found type `[closure@$DIR/issue-24036.rs:13:9: 13:18]`
|
|
|
|
note: no two closures, even if identical, have the same type
|
|
|
|
--> $DIR/issue-24036.rs:13:9
|
|
|
|
|
|
|
|
|
13 | x = |c| c + 1;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
help: consider boxing your closure and/or using it as a trait object
|
|
|
|
--> $DIR/issue-24036.rs:13:9
|
|
|
|
|
|
|
|
|
13 | x = |c| c + 1;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0308]: match arms have incompatible types
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-24036.rs:18:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
18 | let x = match 1usize {
|
2017-12-10 13:47:55 -06:00
|
|
|
| _____________^
|
2017-12-10 14:29:24 -06:00
|
|
|
19 | | //~^ ERROR match arms have incompatible types
|
|
|
|
20 | | 1 => |c| c + 1,
|
|
|
|
21 | | 2 => |c| c - 1,
|
|
|
|
22 | | _ => |c| c - 1
|
|
|
|
23 | | };
|
2017-12-10 13:47:55 -06:00
|
|
|
| |_____^ expected closure, found a different closure
|
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
= note: expected type `[closure@$DIR/issue-24036.rs:20:14: 20:23]`
|
|
|
|
found type `[closure@$DIR/issue-24036.rs:21:14: 21:23]`
|
2017-12-10 13:47:55 -06:00
|
|
|
note: no two closures, even if identical, have the same type
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-24036.rs:18:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
18 | let x = match 1usize {
|
2017-12-10 13:47:55 -06:00
|
|
|
| _____________^
|
2017-12-10 14:29:24 -06:00
|
|
|
19 | | //~^ ERROR match arms have incompatible types
|
|
|
|
20 | | 1 => |c| c + 1,
|
|
|
|
21 | | 2 => |c| c - 1,
|
|
|
|
22 | | _ => |c| c - 1
|
|
|
|
23 | | };
|
2017-12-10 13:47:55 -06:00
|
|
|
| |_____^
|
|
|
|
help: consider boxing your closure and/or using it as a trait object
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-24036.rs:18:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
18 | let x = match 1usize {
|
2017-12-10 13:47:55 -06:00
|
|
|
| _____________^
|
2017-12-10 14:29:24 -06:00
|
|
|
19 | | //~^ ERROR match arms have incompatible types
|
|
|
|
20 | | 1 => |c| c + 1,
|
|
|
|
21 | | 2 => |c| c - 1,
|
|
|
|
22 | | _ => |c| c - 1
|
|
|
|
23 | | };
|
2017-12-10 13:47:55 -06:00
|
|
|
| |_____^
|
|
|
|
note: match arm with an incompatible type
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-24036.rs:21:14
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
21 | 2 => |c| c - 1,
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|