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

16 lines
396 B
Plaintext

==== tests/cases/compiler/moduleImport.ts (1 errors) ====
module A.B.C {
import XYZ = X.Y.Z;
~~~~~~~~~~~~~~~~~~~
!!! Module 'X' has no exported member 'Y'.
export function ping(x: number) {
if (x>0) XYZ.pong (x-1);
}
}
module X {
import ABC = A.B.C;
export function pong(x: number) {
if (x > 0) ABC.ping(x-1);
}
}