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