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

15 lines
408 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/scopeCheckExtendedClassInsideStaticMethod1.ts (3 errors) ====
class C { private v; public p; static s; }
class D extends C {
static c() {
v = 1;
~
!!! Cannot find name 'v'.
this.p = 1;
~
!!! Property 'p' does not exist on type 'typeof D'.
s = 1;
~
!!! Cannot find name 's'.
}
}