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

6 lines
140 B
TypeScript

interface Test {
then<U>(p: string): string;
then(p: string): Date; // Error: Overloads cannot differ only by return type
}