TypeScript/tests/baselines/reference/declFileWithInternalModuleNameConflictsInExtendsClause3.types
2014-08-15 14:37:48 -07:00

37 lines
542 B
Plaintext

=== tests/cases/compiler/declFileWithInternalModuleNameConflictsInExtendsClause3.ts ===
module X.A.C {
>X : typeof X
>A : typeof A
>C : C
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 : X
>A : A
>C : C
>Z : Z
}
}
module X.A.B.C {
>X : typeof X
>A : typeof A
>B : typeof B
>C : typeof C
export module A {
>A : A
}
}