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

7 lines
234 B
Plaintext

==== tests/cases/conformance/types/primitives/string/assignFromStringInterface.ts (1 errors) ====
var x = '';
var a: String;
x = a;
~
!!! error TS2323: Type 'String' is not assignable to type 'string'.
a = x;