Files
ValueScript/inputs/passing/thisParam.ts
Andrew Morris 2952d69698 Fix this params
2023-07-06 14:06:51 +10:00

10 lines
129 B
TypeScript

//! test_output(10)
export default function () {
return foo(5);
}
function foo(this: unknown, x: number) {
return 2 * x;
}