mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 23:48:02 -05:00
24 lines
272 B
TypeScript
24 lines
272 B
TypeScript
// test_output! "this thing"
|
|
|
|
export default function () {
|
|
while (true) {
|
|
try {
|
|
try {
|
|
return "this thing";
|
|
} finally {
|
|
1 + 1;
|
|
}
|
|
} finally {
|
|
2 + 2;
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
try {
|
|
} finally {
|
|
}
|
|
|
|
return "that thing";
|
|
}
|