TypeScript/tests/baselines/reference/importDeclWithExportModifierAndExportAssignmentInAmbientContext.errors.txt

11 lines
371 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/importDeclWithExportModifierAndExportAssignmentInAmbientContext.ts (1 errors) ====
declare module "m" {
module x {
interface c {
}
}
export import a = x.c;
export = x;
~~~~~~~~~~~
!!! An export assignment cannot be used in a module with other exported elements.
}