rust/tests/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 15:56:47 +00:00
--> $DIR/move-closure.rs:5:17
|
2019-03-09 12:03:44 +00:00
LL | let x: () = move || ();
| -- ^^^^^^^^^^ expected `()`, found closure
| |
| expected due to this
|
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]`
help: use parentheses to call this closure
|
LL | let x: () = (move || ())();
| + +++
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0308`.