rust/src/test/compile-fail/return-in-block-function.rs

6 lines
92 B
Rust
Raw Normal View History

fn main() {
let _x = || {
return //~ ERROR: `return` in block function
};
}