TypeScript/tests/cases/compiler/forOfStringConstituents.ts

8 lines
187 B
TypeScript

interface A { x: 0; y: C[]; }
interface B { x: 1; y: CD[]; }
interface C { x: 2; }
interface D { x: 3; }
type AB = A | B;
type CD = C | D;
declare let x: AB, y: CD;
for (y of x.y);