TypeScript/tests/baselines/reference/classExtendsShadowedConstructorFunction.errors.txt
2015-06-15 10:44:21 -07:00

14 lines
No EOL
637 B
Text

tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsShadowedConstructorFunction.ts(5,21): error TS2507: Base expression is not of a constructor function type.
==== tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsShadowedConstructorFunction.ts (1 errors) ====
class C { foo: string; }
module M {
var C = 1;
class D extends C { // error, C must evaluate to constructor function
~
!!! error TS2507: Base expression is not of a constructor function type.
bar: string;
}
}