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