mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
11 lines
142 B
TypeScript
11 lines
142 B
TypeScript
// @target: es6
|
|
type X = { x: 'x' };
|
|
type Y = { y: 'y' };
|
|
|
|
declare const arr: X[] & Y[];
|
|
|
|
for (const item of arr) {
|
|
item.x;
|
|
item.y;
|
|
}
|