TypeScript/tests/baselines/reference/declFileWithInternalModuleNameConflictsInExtendsClause3.types
2014-08-28 12:40:58 -07:00

37 lines
578 B
Plaintext

=== tests/cases/compiler/declFileWithInternalModuleNameConflictsInExtendsClause3.ts ===
module X.A.C {
>X : typeof X
>A : typeof A
>C : unknown
export interface Z {
>Z : Z
}
}
module X.A.B.C {
>X : typeof X
>A : typeof A
>B : typeof B
>C : typeof C
export class W implements X.A.C.Z { // This needs to be refered as X.A.C.Z as A has conflict
>W : W
>X : unknown
>A : unknown
>C : unknown
>Z : X.A.C.Z
}
}
module X.A.B.C {
>X : typeof X
>A : typeof A
>B : typeof B
>C : typeof C
export module A {
>A : unknown
}
}