mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +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
|
|
}
|