TypeScript/tests/baselines/reference/declFileWithInternalModuleNameConflictsInExtendsClause1.types

32 lines
523 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/declFileWithInternalModuleNameConflictsInExtendsClause1.ts ===
module X.A.C {
>X : typeof X
>A : typeof A
>C : any
2014-08-15 23:33:16 +02:00
export interface Z {
>Z : Z
2014-08-15 23:33:16 +02:00
}
}
module X.A.B.C {
>X : typeof X
>A : typeof A
>B : typeof B
>C : typeof C
2014-08-15 23:33:16 +02:00
module A {
>A : any
2014-08-15 23:33:16 +02:00
}
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.A.C.Z : any
>X.A.C : any
>X.A : typeof A
>X : typeof X
>A : typeof A
>C : any
>Z : X.A.C.Z
2014-08-15 23:33:16 +02:00
}
}