TypeScript/tests/baselines/reference/templateStringInInstanceOfES6.errors.txt
2014-10-23 15:06:05 -07:00

7 lines
497 B
Plaintext

tests/cases/conformance/es6/templates/templateStringInInstanceOfES6.ts(1,9): error TS2358: The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter.
==== tests/cases/conformance/es6/templates/templateStringInInstanceOfES6.ts (1 errors) ====
var x = `abc${ 0 }def` instanceof String;
~~~~~~~~~~~~~~
!!! error TS2358: The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter.