TypeScript/tests/baselines/reference/propertyAssignment.errors.txt
Nathan Shively-Sanders c87c1e9b3f Improve error message
And accept baselines
2015-11-25 10:51:31 -08:00

35 lines
1.6 KiB
Plaintext

tests/cases/compiler/propertyAssignment.ts(6,13): error TS1170: A computed property name in a type literal must directly refer to a built-in symbol.
tests/cases/compiler/propertyAssignment.ts(6,14): error TS2304: Cannot find name 'index'.
tests/cases/compiler/propertyAssignment.ts(14,1): error TS2322: Type '{ x: number; }' is not assignable to type 'new () => any'.
Type '{ x: number; }' provides no match for the signature 'new (): any'
tests/cases/compiler/propertyAssignment.ts(16,1): error TS2322: Type '{ x: number; }' is not assignable to type '() => void'.
Type '{ x: number; }' provides no match for the signature '(): void'
==== tests/cases/compiler/propertyAssignment.ts (4 errors) ====
var foo1: { new ():any; }
var bar1: { x : number; }
var foo2: { [index]; } // should be an error, used to be indexer, now it is a computed property
~~~~~~~
!!! error TS1170: A computed property name in a type literal must directly refer to a built-in symbol.
~~~~~
!!! error TS2304: Cannot find name 'index'.
var bar2: { x : number; }
var foo3: { ():void; }
var bar3: { x : number; }
foo1 = bar1; // should be an error
~~~~
!!! error TS2322: Type '{ x: number; }' is not assignable to type 'new () => any'.
!!! error TS2322: Type '{ x: number; }' provides no match for the signature 'new (): any'
foo2 = bar2;
foo3 = bar3; // should be an error
~~~~
!!! error TS2322: Type '{ x: number; }' is not assignable to type '() => void'.
!!! error TS2322: Type '{ x: number; }' provides no match for the signature '(): void'