2017-12-10 19:47:55 +00:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-24036.rs:3:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-11-16 02:53:17 +00:00
|
|
|
LL | let mut x = |c| c + 1;
|
2022-06-27 05:45:35 +00:00
|
|
|
| --- the expected closure
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | x = |c| c + 1;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^^^ expected closure, found a different closure
|
|
|
|
|
|
2023-09-09 06:36:50 +00:00
|
|
|
= note: expected closure `{closure@$DIR/issue-24036.rs:2:17: 2:20}`
|
|
|
|
found closure `{closure@$DIR/issue-24036.rs:3:9: 3:12}`
|
2017-12-20 03:04:09 +00: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 19:47:55 +00:00
|
|
|
|
2023-08-14 13:09:53 +00:00
|
|
|
error[E0284]: type annotations needed
|
2020-05-07 05:12:47 +00:00
|
|
|
--> $DIR/issue-24036.rs:9:15
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2020-05-07 05:12:47 +00:00
|
|
|
LL | 1 => |c| c + 1,
|
2023-08-14 13:09:53 +00:00
|
|
|
| ^ - type must be known at this point
|
2022-02-14 12:25:26 +00:00
|
|
|
|
|
2023-08-14 13:09:53 +00:00
|
|
|
= note: cannot satisfy `<_ as Add<i32>>::Output == _`
|
2022-12-13 19:36:43 +00:00
|
|
|
help: consider giving this closure parameter an explicit type
|
2022-02-14 12:25:26 +00:00
|
|
|
|
|
2022-12-13 19:36:43 +00:00
|
|
|
LL | 1 => |c: /* Type */| c + 1,
|
|
|
|
| ++++++++++++
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2023-08-14 13:09:53 +00:00
|
|
|
Some errors have detailed explanations: E0284, E0308.
|
|
|
|
For more information about an error, try `rustc --explain E0284`.
|