DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / recursiveInferenceBug.ts
12345678910
function f(x: number) { var z = f(x); return x; } var zz = { g: () =>{ }, get f() { return "abc"; }, };