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

45 lines
1.1 KiB
Plaintext

==== tests/cases/conformance/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates3.ts (2 errors) ====
class C {
private x: number;
}
class C2 {
private x: number;
}
interface A extends C { // error
~
!!! Interface 'A' cannot simultaneously extend types 'C' and 'C2':
!!! Named properties 'x' of types 'C' and 'C2' are not identical.
y: string;
}
interface A extends C2 {
z: string;
}
class D extends C implements A { // error
y: string;
z: string;
}
module M {
class C {
private x: string;
}
class C2 {
private x: number;
}
interface A extends C { // error, privates conflict
~
!!! Interface 'A' cannot simultaneously extend types 'C' and 'C2':
!!! Named properties 'x' of types 'C' and 'C2' are not identical.
y: string;
}
interface A extends C2 {
z: string;
}
}