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

16 lines
759 B
Plaintext

tests/cases/compiler/ExportAssignment8.ts(1,1): error TS1148: Cannot compile external modules unless the '--module' flag is provided.
tests/cases/compiler/ExportAssignment8.ts(1,1): error TS2304: Cannot find name 'B'.
tests/cases/compiler/ExportAssignment8.ts(1,1): error TS2309: An export assignment cannot be used in a module with other exported elements.
==== tests/cases/compiler/ExportAssignment8.ts (3 errors) ====
export = B;
~~~~~~~~~~~
!!! error TS1148: Cannot compile external modules unless the '--module' flag is provided.
~~~~~~~~~~~
!!! error TS2304: Cannot find name 'B'.
~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.
export class C {
}