TypeScript/tests/baselines/reference/nullAssignedToUndefined.errors.txt
2014-09-12 13:35:07 -07:00

8 lines
475 B
Plaintext

tests/cases/conformance/types/typeRelationships/assignmentCompatibility/nullAssignedToUndefined.ts(1,9): error TS2364: Invalid left-hand side of assignment expression.
==== 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