TypeScript/tests/cases/conformance/expressions/asOperator/asOperator1.ts
2015-06-18 14:03:14 -07:00

9 lines
235 B
TypeScript

var as = 43;
var x = undefined as number;
var y = (null as string).length;
var z = Date as any as string;
// Should parse as a union type, not a bitwise 'or' of (32 as number) and 'string'
var j = 32 as number|string;
j = '';