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

10 lines
251 B
Plaintext

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