2017-12-10 22:47:55 +03:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-24036.rs:3:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | x = |c| c + 1;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^ expected closure, found a different closure
|
|
|
|
|
|
2018-12-25 08:56:47 -07:00
|
|
|
= note: expected type `[closure@$DIR/issue-24036.rs:2:17: 2:26]`
|
|
|
|
found type `[closure@$DIR/issue-24036.rs:3:9: 3:18]`
|
2017-12-19 19:04:09 -08:00
|
|
|
= note: no two closures, even if identical, have the same type
|
|
|
|
= help: consider boxing your closure and/or using it as a trait object
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error[E0308]: match arms have incompatible types
|
2019-02-07 05:39:54 -08:00
|
|
|
--> $DIR/issue-24036.rs:10:14
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let x = match 1usize {
|
2019-02-07 05:39:54 -08:00
|
|
|
| _____________-
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | 1 => |c| c + 1,
|
2019-02-07 05:39:54 -08:00
|
|
|
| | --------- this is found to be of type `[closure@$DIR/issue-24036.rs:9:14: 9:23]`
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | 2 => |c| c - 1,
|
2019-02-07 05:39:54 -08:00
|
|
|
| | ^^^^^^^^^ expected closure, found a different closure
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | | _ => |c| c - 1
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | };
|
2019-02-07 05:39:54 -08:00
|
|
|
| |_____- `match` arms have incompatible types
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-02-07 05:39:54 -08:00
|
|
|
= note: expected type `[closure@$DIR/issue-24036.rs:9:14: 9:23]`
|
|
|
|
found type `[closure@$DIR/issue-24036.rs:10:14: 10:23]`
|
2017-12-19 19:04:09 -08:00
|
|
|
= note: no two closures, even if identical, have the same type
|
|
|
|
= help: consider boxing your closure and/or using it as a trait object
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|