mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
|
let obj: number[];
|
||
|
let x: string | number | boolean | RegExp;
|
||
|
|
||
|
function a() {
|
||
|
x = true;
|
||
|
for (x of obj) {
|
||
|
x = x.toExponential();
|
||
|
}
|
||
|
x; // string | boolean
|
||
|
}
|