TypeScript/tests/baselines/reference/stringPropertyAccessWithError.errors.txt
2014-09-11 16:11:08 -07:00

5 lines
293 B
Plaintext

==== 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'.