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