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

5 lines
302 B
Plaintext

==== tests/cases/conformance/types/typeRelationships/assignmentCompatibility/nullAssignedToUndefined.ts (1 errors) ====
var x = undefined = null; // error
~~~~~~~~~
!!! error TS2364: Invalid left-hand side of assignment expression.
var y: typeof undefined = null; // ok, widened