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

14 lines
576 B
Plaintext

tests/cases/compiler/importDeclWithExportModifierAndExportAssignmentInAmbientContext.ts(7,5): error TS2309: An export assignment cannot be used in a module with other exported elements.
==== tests/cases/compiler/importDeclWithExportModifierAndExportAssignmentInAmbientContext.ts (1 errors) ====
declare module "m" {
module x {
interface c {
}
}
export import a = x.c;
export = x;
~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.
}