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