TypeScript/tests/baselines/reference/qualifiedName_entity-name-resolution-does-not-affect-class-heritage.errors.txt
2015-06-15 10:44:21 -07:00

12 lines
No EOL
494 B
Text

tests/cases/compiler/qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts(5,20): error TS2507: Base expression is not of a constructor function type.
==== tests/cases/compiler/qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts (1 errors) ====
module Alpha {
export var x = 100;
}
class Beta extends Alpha.x {
~~~~~~~
!!! error TS2507: Base expression is not of a constructor function type.
}