TypeScript/tests/baselines/reference/assignFromStringInterface.errors.txt
2014-07-12 17:30:19 -07:00

7 lines
220 B
Plaintext

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