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

13 lines
373 B
Plaintext
Raw Normal View History

2015-03-02 21:21:53 +01:00
tests/cases/compiler/importAnImport.ts(6,23): error TS2305: Module 'c.a.b' has no exported member 'ma'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/importAnImport.ts (1 errors) ====
module c.a.b {
import ma = a;
}
module m0 {
import m8 = c.a.b.ma;
2015-03-02 21:21:53 +01:00
~~
!!! error TS2305: Module 'c.a.b' has no exported member 'ma'.
2014-07-13 01:04:16 +02:00
}