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

8 lines
285 B
Plaintext
Raw Normal View History

2014-07-15 22:10:22 +02:00
==== tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment5.ts (2 errors) ====
2014-07-13 01:04:16 +02:00
module M {
export = A;
~~~~~~~~~~~
!!! An export assignment cannot be used in an internal module.
2014-07-15 22:10:22 +02:00
~~~~~~~~~~~
!!! Cannot find name 'A'.
2014-07-13 01:04:16 +02:00
}