TypeScript/tests/cases/compiler/duplicateConstructSignature2.ts
2014-07-12 17:30:19 -07:00

4 lines
61 B
TypeScript

interface I<T> {
(x: T): number;
(x: T): string;
}