blob: bdd7951b303ca0ef301a4f29e61fa2eb440962d2 (
plain)
1
2
3
4
5
6
|
// Regression test for issue #24986
// Make sure that the span of a closure marked `move` begins at the `move` keyword.
fn main() {
let x: () = move || (); //~ ERROR mismatched types
}
|