TypeScript/tests/cases/conformance/expressions/asOperator/asOperator1.ts

9 lines
235 B
TypeScript
Raw Normal View History

2015-06-18 23:03:14 +02:00
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 = '';