TypeScript/tests/baselines/reference/voidAsOperator.js

18 lines
186 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [voidAsOperator.ts]
if (!void 0 !== true) {
}
//CHECK#2
if (!null !== true) {
}
//// [voidAsOperator.js]
if (!void 0 !== true) {
}
2014-08-16 00:32:43 +02:00
//CHECK#2
2014-07-13 01:04:16 +02:00
if (!null !== true) {
}