TypeScript/tests/baselines/reference/extendNonClassSymbol1.errors.txt
2014-09-12 13:35:07 -07:00

9 lines
329 B
Plaintext

tests/cases/compiler/extendNonClassSymbol1.ts(3,17): error TS2304: Cannot find name 'x'.
==== 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'.