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
|
|
|
|
|
2019-11-15 18:53:17 -08:00
|
|
|
LL | let mut x = |c| c + 1;
|
2019-12-15 14:05:08 -08:00
|
|
|
| --------- the expected closure
|
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
|
|
|
|
|
|
2019-11-13 14:16:56 -08:00
|
|
|
= note: expected closure `[closure@$DIR/issue-24036.rs:2:17: 2:26]`
|
|
|
|
found closure `[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
|
|
|
|
2020-05-07 13:12:47 +08:00
|
|
|
error[E0282]: type annotations needed
|
|
|
|
--> $DIR/issue-24036.rs:9:15
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2020-05-07 13:12:47 +08:00
|
|
|
LL | 1 => |c| c + 1,
|
2022-02-14 13:25:26 +01:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
help: consider giving this closure parameter an explicit type
|
|
|
|
|
|
|
|
|
LL | 1 => |c: _| c + 1,
|
|
|
|
| +++
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2020-05-07 13:12:47 +08:00
|
|
|
Some errors have detailed explanations: E0282, E0308.
|
|
|
|
For more information about an error, try `rustc --explain E0282`.
|