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

16 lines
468 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/ambientExternalModuleInAnotherExternalModule.ts (2 errors) ====
class D { }
export = D;
declare module "ext" {
2014-07-17 01:15:10 +02:00
~~~~~
!!! Ambient external modules cannot be nested in other modules.
2014-07-13 01:04:16 +02:00
export class C { }
}
// Cannot resolve this ext module reference
import ext = require("ext");
~~~~~
!!! Cannot find external module 'ext'.
var x = ext;