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

11 lines
536 B
Plaintext
Raw Normal View History

tests/cases/conformance/classes/classDeclarations/classHeritageSpecification/classExtendsValidConstructorFunction.ts(5,17): error TS2304: Cannot find name 'foo'.
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
~~~
!!! error TS2304: Cannot find name 'foo'.