TypeScript/tests/cases/compiler/instantiatedTypeAliasDisplay.ts

17 lines
363 B
TypeScript
Raw Normal View History

2016-11-08 15:09:41 +01:00
// @declaration: true
2016-11-06 01:36:13 +01:00
// 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[]>