blob: dae4cc73d7db26d13a7e5f237405a04eb11503b7 [file] [log] [blame]
// Expectation for test:
// foo(a) { try { print(a); } finally { return a; } }
//
// main() {
// foo(false);
// if (foo(true)) {
// print(1);
// } else {
// print(2);
// }
// print(3);
// }
function() {
V.foo(false);
V.foo(true) ? P.print(1) : P.print(2);
P.print(3);
}