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

14 lines
288 B
Plaintext

=== tests/cases/compiler/reservedNameOnModuleImport.ts ===
declare module test {
>test : typeof test
module mstring { }
>mstring : any
// Should be fine; this does not clobber any declared values.
export import string = mstring;
>string : any
>mstring : any
}