TypeScript/tests/baselines/reference/recursiveObjectLiteral.types
2014-08-25 11:04:30 -07:00

8 lines
132 B
Plaintext

=== tests/cases/compiler/recursiveObjectLiteral.ts ===
var a = { f: a };
>a : any
>{ f: a } : { f: any; }
>f : any
>a : any