==== tests/cases/conformance/externalModules/exportAssignmentAndDeclaration.ts (1 errors) ==== export enum E1 { A,B,C } class C1 { } // Invalid, as there is already an exported member. export = C1; ~~~~~~~~~~~~ !!! An export assignment cannot be used in a module with other exported elements.