12 lines
307 B
Plaintext
12 lines
307 B
Plaintext
|
error[E0308]: mismatched types
|
||
|
--> $DIR/move-closure.rs:15:17
|
||
|
|
|
||
|
15 | let x: () = move || ();
|
||
|
| ^^^^^^^^^^ expected (), found closure
|
||
|
|
|
||
|
= note: expected type `()`
|
||
|
= note: found type `[closure@$DIR/move-closure.rs:15:17: 15:27]`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|