2016-08-16 11:14:41 +00:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/move-closure.rs:5:17
|
2016-08-16 11:14:41 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let x: () = move || ();
|
2019-11-19 05:00:24 +00:00
|
|
|
| -- ^^^^^^^^^^ expected `()`, found closure
|
|
|
|
| |
|
|
|
|
| expected due to this
|
2016-08-16 11:14:41 +00:00
|
|
|
|
|
2019-11-14 22:08:08 +00:00
|
|
|
= note: expected unit type `()`
|
2022-06-27 05:45:35 +00:00
|
|
|
found closure `[closure@$DIR/move-closure.rs:5:17: 5:24]`
|
2022-06-20 06:11:31 +00:00
|
|
|
help: use parentheses to call this closure
|
|
|
|
|
|
|
|
|
LL | let x: () = (move || ())();
|
|
|
|
| + +++
|
2016-08-16 11:14:41 +00:00
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to previous error
|
2016-08-16 11:14:41 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|