TypeScript/tests/baselines/reference/numericIndexerConstraint1.errors.txt
2014-11-05 12:26:03 -08:00

12 lines
505 B
Plaintext

tests/cases/compiler/numericIndexerConstraint1.ts(3,5): error TS2322: Type 'number' is not assignable to type 'Foo'.
Property 'foo' is missing in type 'Number'.
==== tests/cases/compiler/numericIndexerConstraint1.ts (1 errors) ====
class Foo { foo() { } }
var x: { [index: string]: number; };
var result: Foo = x["one"]; // error
~~~~~~
!!! error TS2322: Type 'number' is not assignable to type 'Foo'.
!!! error TS2322: Property 'foo' is missing in type 'Number'.