TypeScript/tests/baselines/reference/memberFunctionsWithPrivateOverloads.errors.txt
2014-07-12 17:30:19 -07:00

58 lines
1.8 KiB
Plaintext

==== tests/cases/conformance/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPrivateOverloads.ts (4 errors) ====
class C {
private foo(x: number);
private foo(x: number, y: string);
private foo(x: any, y?: any) { }
private bar(x: 'hi');
private bar(x: string);
private bar(x: number, y: string);
private bar(x: any, y?: any) { }
private static foo(x: number);
private static foo(x: number, y: string);
private static foo(x: any, y?: any) { }
private static bar(x: 'hi');
private static bar(x: string);
private static bar(x: number, y: string);
private static bar(x: any, y?: any) { }
}
class D<T> {
private foo(x: number);
private foo(x: T, y: T);
private foo(x: any, y?: any) { }
private bar(x: 'hi');
private bar(x: string);
private bar(x: T, y: T);
private bar(x: any, y?: any) { }
private static foo(x: number);
private static foo(x: number, y: number);
private static foo(x: any, y?: any) { }
private static bar(x: 'hi');
private static bar(x: string);
private static bar(x: number, y: number);
private static bar(x: any, y?: any) { }
}
var c: C;
var r = c.foo(1); // error
~~~~~
!!! Property 'C.foo' is inaccessible.
var d: D<number>;
var r2 = d.foo(2); // error
~~~~~
!!! Property 'D.foo' is inaccessible.
var r3 = C.foo(1); // error
~~~~~
!!! Property 'C.foo' is inaccessible.
var r4 = D.bar(''); // error
~~~~~
!!! Property 'D.bar' is inaccessible.