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

9 lines
325 B
Plaintext
Raw Normal View History

tests/cases/compiler/propertyAccess1.ts(3,5): error TS2339: Property 'b' does not exist on type '{ a: number; }'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/propertyAccess1.ts (1 errors) ====
var foo: { a: number; };
foo.a = 4;
foo.b = 5;
~
!!! error TS2339: Property 'b' does not exist on type '{ a: number; }'.