TypeScript/tests/baselines/reference/recursiveObjectLiteral.types
2015-04-15 16:44:20 -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