TypeScript/tests/baselines/reference/recursiveObjectLiteral.js
2014-07-12 17:30:19 -07:00

6 lines
108 B
JavaScript

//// [recursiveObjectLiteral.ts]
var a = { f: a };
//// [recursiveObjectLiteral.js]
var a = { f: a };