TypeScript/tests/baselines/reference/reservedNameOnModuleImportWithInterface.errors.txt
2014-09-12 13:35:07 -07:00

14 lines
532 B
Plaintext

tests/cases/compiler/reservedNameOnModuleImportWithInterface.ts(6,12): error TS2438: Import name cannot be 'string'
==== tests/cases/compiler/reservedNameOnModuleImportWithInterface.ts (1 errors) ====
declare module test {
interface mi_string { }
module mi_string { }
// Should error; imports both a type and a module, which means it conflicts with the 'string' type.
import string = mi_string;
~~~~~~
!!! error TS2438: Import name cannot be 'string'
}