TypeScript/tests/cases/compiler/reservedNameOnModuleImport.ts

7 lines
156 B
TypeScript

declare module test {
module mstring { }
// Should be fine; this does not clobber any declared values.
export import string = mstring;
}