TypeScript/tests/cases/compiler/instantiatedTypeAliasDisplay.ts
2016-11-08 06:09:41 -08:00

17 lines
363 B
TypeScript

// @declaration: true
// Repros from #12066
interface X<A> {
a: A;
}
interface Y<B> {
b: B;
}
type Z<A, B> = X<A> | Y<B>;
declare function f1<A>(): Z<A, number>;
declare function f2<A, B, C, D, E>(a: A, b: B, c: C, d: D): Z<A, string[]>;
const x1 = f1<string>(); // Z<string, number>
const x2 = f2({}, {}, {}, {}); // Z<{}, string[]>