TypeScript/tests/baselines/reference/objectLiteralReferencingInternalProperties.js
2014-08-14 16:36:33 -07:00

6 lines
267 B
JavaScript

//// [objectLiteralReferencingInternalProperties.ts]
var a = { b: 10, c: b }; // Should give error for attempting to reference b.
//// [objectLiteralReferencingInternalProperties.js]
var a = { b: 10, c: b }; // Should give error for attempting to reference b.