//// [literals-negative.ts] // Type type of the null literal is the Null type. // Null can be converted to anything except Void var n = (null); var s = (null); var b = (n); function isVoid() : void { } // Expected error: Values of type null and void cannot be compared if(null === isVoid()) { } //// [literals-negative.js] // Type type of the null literal is the Null type. // Null can be converted to anything except Void var n = (null); var s = (null); var b = (n); function isVoid() { } // Expected error: Values of type null and void cannot be compared if (null === isVoid()) { }