TypeScript/tests/baselines/reference/objectLiteralReferencingInternalProperties.js

6 lines
267 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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.