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

17 lines
557 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/externalModules/foo3.ts (0 errors) ====
import foo2 = require('./foo2');
var x = foo2(); // should be boolean
==== tests/cases/conformance/externalModules/foo1.ts (1 errors) ====
export function x(){
~~~~~~~~~~~~~~~~~~~~
return true;
~~~~~~~~~~~~~
}
~
!!! Cannot compile external modules unless the '--module' flag is provided.
==== tests/cases/conformance/externalModules/foo2.ts (0 errors) ====
import foo1 = require('./foo1');
var x = foo1.x;
export = x;