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

11 lines
596 B
Plaintext
Raw Normal View History

2015-06-17 22:29:08 +02:00
tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsValidConstructorFunction.ts(5,17): error TS2507: Type '() => void' is not a constructor function type.
2014-07-13 01:04:16 +02:00
==== 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
~~~
2015-06-17 22:29:08 +02:00
!!! error TS2507: Type '() => void' is not a constructor function type.