TypeScript/tests/baselines/reference/mergedInterfacesWithInheritedPrivates.errors.txt

42 lines
1.6 KiB
Plaintext
Raw Normal View History

tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates.ts(13,7): error TS2420: Class 'D' incorrectly implements interface 'A'.
Types have separate declarations of a private property 'x'.
tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates.ts(19,7): error TS2420: Class 'E' incorrectly implements interface 'A'.
Property 'x' is private in type 'A' but not in type 'E'.
2014-09-19 15:37:55 +02:00
tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates.ts(26,9): error TS2341: Property 'x' is private and only accessible within class 'C'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates.ts (3 errors) ====
class C {
private x: number;
}
interface A extends C {
y: string;
}
interface A {
z: string;
}
class D implements A { // error
~
!!! error TS2420: Class 'D' incorrectly implements interface 'A'.
!!! error TS2420: Types have separate declarations of a private property 'x'.
2014-07-13 01:04:16 +02:00
private x: number;
y: string;
z: string;
}
class E implements A { // error
~
!!! error TS2420: Class 'E' incorrectly implements interface 'A'.
!!! error TS2420: Property 'x' is private in type 'A' but not in type 'E'.
2014-07-13 01:04:16 +02:00
x: number;
y: string;
z: string;
}
var a: A;
var r = a.x; // error
~~~
2014-09-19 15:37:55 +02:00
!!! error TS2341: Property 'x' is private and only accessible within class 'C'.