TypeScript/tests/cases/compiler/fatarrowfunctionsInFunctionParameterDefaults.ts
2014-07-12 17:30:19 -07:00

9 lines
112 B
TypeScript

function fn(x = () => this, y = x()) {
// should be 4
return y;
}
fn.call(4); // Should be 4