TypeScript/tests/baselines/reference/duplicateConstructSignature2.types
2014-08-15 14:37:48 -07:00

14 lines
180 B
Plaintext

=== tests/cases/compiler/duplicateConstructSignature2.ts ===
interface I<T> {
>I : I<T>
>T : T
(x: T): number;
>x : T
>T : T
(x: T): string;
>x : T
>T : T
}