mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
49 lines
959 B
TypeScript
49 lines
959 B
TypeScript
// Duplicate overloads of construct signatures should generate errors
|
|
|
|
class C {
|
|
constructor(x: number, y: string);
|
|
constructor(x: number, y: string); // error
|
|
constructor(x: number) { }
|
|
}
|
|
|
|
var r1 = new C(1, '');
|
|
|
|
class C2<T> {
|
|
constructor(x: T, y: string);
|
|
constructor(x: T, y: string); // error
|
|
constructor(x: T) { }
|
|
}
|
|
|
|
var r2 = new C2(1, '');
|
|
|
|
interface I {
|
|
new (x: number, y: string): C;
|
|
new (x: number, y: string): C; // error
|
|
}
|
|
|
|
var i: I;
|
|
var r3 = new i(1, '');
|
|
|
|
interface I2<T> {
|
|
new (x: T, y: string): C2<T>;
|
|
new (x: T, y: string): C2<T>; // error
|
|
new <T>(x: T, y: string): C2<T>;
|
|
new <T>(x: T, y: string): C2<T>; // error
|
|
}
|
|
|
|
var i2: I2<number>;
|
|
var r4 = new i2(1, '');
|
|
|
|
var a: {
|
|
new (x: number, y: string): C;
|
|
new (x: number, y: string): C; // error
|
|
}
|
|
|
|
var r5 = new a(1, '');
|
|
|
|
var b: {
|
|
new <T>(x: T, y: string): C2<T>;
|
|
new <T>(x: T, y: string): C2<T>; // error
|
|
}
|
|
|
|
var r6 = new b(1, ''); |