TypeScript/tests/baselines/reference/typeofOperatorInvalidOperations.js

17 lines
355 B
TypeScript

//// [typeofOperatorInvalidOperations.ts]
// Unary operator typeof
// opreand before typeof
var ANY = ANY typeof ; //expect error
// miss an operand
var ANY1 = typeof ;
//// [typeofOperatorInvalidOperations.js]
// Unary operator typeof
// opreand before typeof
var ANY = ANY;
typeof ; //expect error
// miss an operand
var ANY1 = typeof ;