blob: b72109f0644ee6b582830ecc16faa5ce3a0f2292 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0267]: `break` inside of a closure
--> $DIR/E0267.rs:12:18
|
LL | let w = || { break; }; //~ ERROR E0267
| ^^^^^ cannot break inside of a closure
error: aborting due to previous error
For more information about this error, try `rustc --explain E0267`.
|