TypeScript/tests/baselines/reference/objectLiteralReferencingInternalProperties.errors.txt

7 lines
352 B
Plaintext
Raw Normal View History

tests/cases/compiler/objectLiteralReferencingInternalProperties.ts(1,21): error TS2304: Cannot find name 'b'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/objectLiteralReferencingInternalProperties.ts (1 errors) ====
var a = { b: 10, c: b }; // Should give error for attempting to reference b.
~
!!! error TS2304: Cannot find name 'b'.