TypeScript/tests/baselines/reference/stringPropertyAccessWithError.errors.txt
2014-09-12 13:35:07 -07:00

8 lines
475 B
Plaintext

tests/cases/conformance/types/primitives/string/stringPropertyAccessWithError.ts(2,21): error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.
==== tests/cases/conformance/types/primitives/string/stringPropertyAccessWithError.ts (1 errors) ====
var x = '';
var d = x['charAt']('invalid'); // error
~~~~~~~~~
!!! error TS2345: Argument of type 'string' is not assignable to parameter of type 'number'.