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

9 lines
329 B
Plaintext
Raw Normal View History

tests/cases/compiler/extendNonClassSymbol1.ts(3,17): error TS2304: Cannot find name 'x'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/extendNonClassSymbol1.ts (1 errors) ====
class A { foo() { } }
var x = A;
class C extends x { } // error, could not find symbol xs
~
!!! error TS2304: Cannot find name 'x'.