TypeScript/tests/baselines/reference/moduleSharesNameWithImportDeclarationInsideIt6.types
2015-04-15 16:44:20 -07:00

26 lines
396 B
Plaintext

=== tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt6.ts ===
module Z.M {
>Z : typeof Z
>M : typeof M
export function bar() {
>bar : () => string
return "";
>"" : string
}
}
module A.M {
>A : typeof A
>M : typeof A.M
import M = Z.M;
>M : typeof M
>Z : typeof Z
>M : typeof M
export function bar() {
>bar : () => void
}
}