rust/src/test/ui/span/move-closure.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
560 B
Plaintext
Raw Normal View History

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