11 lines
167 B
Plaintext
11 lines
167 B
Plaintext
// Error: "break" statement is illegal outside of for/while/do loops
|
|
|
|
void foo(int x) {
|
|
foreach_unique (u in x) {
|
|
if (u == 0)
|
|
break;
|
|
}
|
|
}
|
|
|
|
|