TypeScript/tests/baselines/reference/reservedNameOnModuleImport.types
2014-08-28 12:40:58 -07:00

14 lines
300 B
Plaintext

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