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

10 lines
385 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/conformance/types/primitives/number/assignFromNumberInterface.ts(3,1): error TS2322: Type 'Number' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/types/primitives/number/assignFromNumberInterface.ts (1 errors) ====
var x = 1;
var a: Number;
x = a;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'Number' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
a = x;