TypeScript/tests/baselines/reference/classExtendsValidConstructorFunction.errors.txt
2015-06-17 13:29:08 -07:00

11 lines
596 B
Plaintext

tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsValidConstructorFunction.ts(5,17): error TS2507: Type '() => void' is not a constructor function type.
==== tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsValidConstructorFunction.ts (1 errors) ====
function foo() { }
var x = new foo(); // can be used as a constructor function
class C extends foo { } // error, cannot extend it though
~~~
!!! error TS2507: Type '() => void' is not a constructor function type.