mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
14 lines
144 B
TypeScript
14 lines
144 B
TypeScript
//! test_output(undefined)
|
|
|
|
export default function () {
|
|
const x = foo();
|
|
|
|
if (false) {
|
|
return x;
|
|
}
|
|
}
|
|
|
|
function foo() {
|
|
return 0;
|
|
}
|