TypeScript/tests/cases/compiler/moduleSharesNameWithImportDeclarationInsideIt4.ts

12 lines
206 B
TypeScript

module Z.M {
export function bar() {
return "";
}
}
module A.M {
interface M { }
import M = Z.M;
export function bar() {
}
M.bar(); // Should call Z.M.bar
}