TypeScript/tests/baselines/reference/literals-negative.js

23 lines
625 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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]
// Type type of the null literal is the Null type.
// Null can be converted to anything except Void
2014-07-13 01:04:16 +02:00
var n = (null);
var s = (null);
var b = (n);
function isVoid() { }
2014-08-16 00:32:43 +02:00
// Expected error: Values of type null and void cannot be compared
if (null === isVoid()) { }