TypeScript/tests/baselines/reference/ExportAssignment8.errors.txt

16 lines
741 B
Plaintext
Raw Normal View History

2015-04-27 03:31:47 +02:00
tests/cases/compiler/ExportAssignment8.ts(1,1): error TS1148: Cannot compile modules unless the '--module' flag is provided.
tests/cases/compiler/ExportAssignment8.ts(1,1): error TS2309: An export assignment cannot be used in a module with other exported elements.
2015-03-02 21:21:53 +01:00
tests/cases/compiler/ExportAssignment8.ts(1,10): error TS2304: Cannot find name 'B'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/ExportAssignment8.ts (3 errors) ====
export = B;
~~~~~~~~~~~
2015-04-27 03:31:47 +02:00
!!! error TS1148: Cannot compile modules unless the '--module' flag is provided.
2014-07-13 01:04:16 +02:00
~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.
2015-03-02 21:21:53 +01:00
~
!!! error TS2304: Cannot find name 'B'.
2014-07-13 01:04:16 +02:00
export class C {
}