mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
9 lines
227 B
TypeScript
9 lines
227 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 = '';
|