TypeScript/tests/baselines/reference/recursiveObjectLiteral.types

8 lines
132 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/recursiveObjectLiteral.ts ===
var a = { f: a };
>a : any
2014-08-15 23:33:16 +02:00
>{ f: a } : { f: any; }
>f : any
>a : any
2014-08-15 23:33:16 +02:00