TypeScript/tests/baselines/reference/stringPropertyAccessWithError.errors.txt

5 lines
279 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/types/primitives/string/stringPropertyAccessWithError.ts (1 errors) ====
var x = '';
var d = x['charAt']('invalid'); // error
~~~~~~~~~
2014-07-25 04:39:50 +02:00
!!! Argument of type 'string' is not assignable to parameter of type 'number'.