TypeScript/tests/baselines/reference/importDeclWithExportModifier.errors.txt
2015-03-02 12:21:53 -08:00

13 lines
382 B
Plaintext

tests/cases/compiler/importDeclWithExportModifier.ts(5,21): error TS2305: Module 'x' has no exported member 'c'.
==== tests/cases/compiler/importDeclWithExportModifier.ts (1 errors) ====
module x {
interface c {
}
}
export import a = x.c;
~
!!! error TS2305: Module 'x' has no exported member 'c'.
var b: a;