TypeScript/tests/baselines/reference/moduleSharesNameWithImportDeclarationInsideIt6.types
2014-12-17 14:33:32 -08:00

25 lines
382 B
Plaintext

=== tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt6.ts ===
module Z.M {
>Z : typeof Z
>M : typeof M
export function bar() {
>bar : () => string
return "";
}
}
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
}
}