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

17 lines
530 B
Plaintext

==== tests/cases/conformance/externalModules/foo2.ts (2 errors) ====
import foo1 = require('./foo1');
export = foo1.x; // Error, export assignment must be identifier only
~
!!! ';' expected.
~
!!! Cannot find name 'x'.
==== tests/cases/conformance/externalModules/foo1.ts (1 errors) ====
export function x(){
~~~~~~~~~~~~~~~~~~~~
return true;
~~~~~~~~~~~~~
}
~
!!! Cannot compile external modules unless the '--module' flag is provided.