TypeScript/tests/baselines/reference/exportAssignmentAndDeclaration.errors.txt
2014-09-11 16:11:08 -07:00

13 lines
366 B
Plaintext

==== 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;
~~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.