TypeScript/tests/baselines/reference/assignFromStringInterface.errors.txt
2014-11-05 12:26:03 -08:00

10 lines
386 B
Plaintext

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