]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/move-closure.stderr
Rollup merge of #103702 - WaffleLapkin:lift-sized-bounds-from-pointer-methods-where...
[rust.git] / tests / ui / span / move-closure.stderr
1 error[E0308]: mismatched types
2   --> $DIR/move-closure.rs:5:17
3    |
4 LL |     let x: () = move || ();
5    |            --   ^^^^^^^^^^ expected `()`, found closure
6    |            |
7    |            expected due to this
8    |
9    = note: expected unit type `()`
10                 found closure `[closure@$DIR/move-closure.rs:5:17: 5:24]`
11 help: use parentheses to call this closure
12    |
13 LL |     let x: () = (move || ())();
14    |                 +          +++
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0308`.