TypeScript/tests/baselines/reference/parserExportAssignment8.errors.txt
2014-07-12 17:30:19 -07:00

11 lines
398 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment8.ts (3 errors) ====
export = B;
~~~~~~~~~~~
!!! Cannot compile external modules unless the '--module' flag is provided.
~~~~~~~~~~~
!!! An export assignment cannot be used in a module with other exported elements.
~~~~~~~~~~~
!!! Cannot find name 'B'.
export class C {
}