mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
class C {
|
|
private foo(x: number);
|
|
public foo(x: number, y: string); // error
|
|
private foo(x: any, y?: any) { }
|
|
|
|
private bar(x: 'hi');
|
|
public bar(x: string); // error
|
|
private bar(x: number, y: string);
|
|
private bar(x: any, y?: any) { }
|
|
|
|
private static foo(x: number);
|
|
public static foo(x: number, y: string); // error
|
|
private static foo(x: any, y?: any) { }
|
|
|
|
protected baz(x: string); // error
|
|
protected baz(x: number, y: string); // error
|
|
private baz(x: any, y?: any) { }
|
|
|
|
private static bar(x: 'hi');
|
|
public static bar(x: string); // error
|
|
private static bar(x: number, y: string);
|
|
private static bar(x: any, y?: any) { }
|
|
|
|
protected static baz(x: 'hi');
|
|
public static baz(x: string); // error
|
|
protected static baz(x: number, y: string);
|
|
protected static baz(x: any, y?: any) { }
|
|
}
|
|
|
|
class D<T> {
|
|
private foo(x: number);
|
|
public foo(x: T, y: T); // error
|
|
private foo(x: any, y?: any) { }
|
|
|
|
private bar(x: 'hi');
|
|
public bar(x: string); // error
|
|
private bar(x: T, y: T);
|
|
private bar(x: any, y?: any) { }
|
|
|
|
private baz(x: string);
|
|
protected baz(x: number, y: string); // error
|
|
private baz(x: any, y?: any) { }
|
|
|
|
private static foo(x: number);
|
|
public static foo(x: number, y: string); // error
|
|
private static foo(x: any, y?: any) { }
|
|
|
|
private static bar(x: 'hi');
|
|
public static bar(x: string); // error
|
|
private static bar(x: number, y: string);
|
|
private static bar(x: any, y?: any) { }
|
|
|
|
public static baz(x: string); // error
|
|
protected static baz(x: number, y: string);
|
|
protected static baz(x: any, y?: any) { }
|
|
}
|
|
|
|
var c: C;
|
|
var r = c.foo(1); // error
|
|
|
|
var d: D<number>;
|
|
var r2 = d.foo(2); // error
|