TypeScript/tests/baselines/reference/functionOverloadsOnGenericArity1.js
2014-07-12 17:30:19 -07:00

16 lines
276 B
TypeScript

//// [functionOverloadsOnGenericArity1.ts]
// overloading on arity not allowed
interface C {
f<T>(): string;
f<T, U>(): string;
<T>(): string;
<T, U>(): string;
new <T>(): string;
new <T, U>(): string;
}
//// [functionOverloadsOnGenericArity1.js]