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