2016-08-16 06:14:41 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/move-closure.rs:15:17
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let x: () = move || (); //~ ERROR mismatched types
|
2016-08-16 06:14:41 -05:00
|
|
|
| ^^^^^^^^^^ expected (), found closure
|
|
|
|
|
|
|
|
|
= note: expected type `()`
|
2017-01-11 15:55:41 -06:00
|
|
|
found type `[closure@$DIR/move-closure.rs:15:17: 15:27]`
|
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-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0308"
|