TypeScript/tests/baselines/reference/voidAsOperator.js

17 lines
175 B
JavaScript
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) {
}
if (!null !== true) {
}