mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
18 lines
283 B
TypeScript
18 lines
283 B
TypeScript
let x: string | number | boolean | RegExp | Function;
|
|
let obj: any;
|
|
let cond: boolean;
|
|
|
|
x = /a/;
|
|
for (let y in obj) {
|
|
x = y;
|
|
if (cond) {
|
|
x = 42;
|
|
continue;
|
|
}
|
|
if (cond) {
|
|
x = true;
|
|
break;
|
|
}
|
|
}
|
|
x; // RegExp | string | number | boolean
|