TypeScript/tests/baselines/reference/propertySignatures.errors.txt
2014-07-12 17:30:19 -07:00

25 lines
599 B
Plaintext

==== tests/cases/compiler/propertySignatures.ts (2 errors) ====
// Should be error - duplicate identifiers
var foo1: { a:string; a: string; };
~
!!! Duplicate identifier 'a'.
// Should be OK
var foo2: { a; };
foo2.a = 2;
foo2.a = "0";
// Should be error
var foo3: { (): string; (): string; };
// Should be OK
var foo4: { (): void; };
var test = foo();
~~~
!!! Cannot find name 'foo'.
// Should be OK
var foo5: {();};
var test = foo5();
test.bar = 2;