blob: a7baf520f6670ebdae0d94ecf3cc711578c3fd6d [file] [log] [blame]
foo(a) { try { print(a); } finally { return a; } }
main() {
while (true) {
l: while (true) {
while (foo(true)) {
if (foo(false)) break l;
}
print(1);
}
print(2);
}
}