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

10 lines
246 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/classExtendingQualifiedName.ts (1 errors) ====
module M {
class C {
}
class D extends M.C {
~~~
!!! Module 'M' has no exported member 'C'.
}
}