DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / fatarrowfunctionsInFunctionParameterDefaults.ts
12345678
function fn(x = () => this, y = x()) { // should be 4 return y; } fn.call(4); // Should be 4