TypeScript/tests/baselines/reference/for-of58.js

18 lines
226 B
TypeScript

//// [for-of58.ts]
type X = { x: 'x' };
type Y = { y: 'y' };
declare const arr: X[] & Y[];
for (const item of arr) {
item.x;
item.y;
}
//// [for-of58.js]
for (const item of arr) {
item.x;
item.y;
}