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

9 lines
325 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/classExtendsClauseClassNotReferringConstructor.ts (1 errors) ====
class A { a: number; }
module Foo {
var A = 1;
class B extends A { b: string; }
~
!!! Type name 'A' in extends clause does not reference constructor function for 'A'.
}