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

15 lines
369 B
TypeScript

class C {
constructor(x) { }
constructor(y, x) { } // illegal, 2 constructor implementations
}
class D {
constructor(x: number);
constructor(y: string); // legal, overload signatures for 1 implementation
constructor(x) { }
}
interface I {
new (x);
new (x, y); // legal, overload signatures for (presumably) 1 implementation
}