TypeScript/tests/baselines/reference/literals-negative.js
2014-07-12 17:30:19 -07:00

22 lines
457 B
JavaScript

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