TypeScript/tests/baselines/reference/classExtendsValidConstructorFunction.errors.txt
2014-07-12 17:30:19 -07:00

8 lines
355 B
Plaintext

==== 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
~~~
!!! Cannot find name 'foo'.