TypeScript/tests/baselines/reference/scopeCheckExtendedClassInsideStaticMethod1.errors.txt
2014-09-11 16:11:08 -07:00

15 lines
450 B
Plaintext

==== tests/cases/compiler/scopeCheckExtendedClassInsideStaticMethod1.ts (3 errors) ====
class C { private v; public p; static s; }
class D extends C {
static c() {
v = 1;
~
!!! error TS2304: Cannot find name 'v'.
this.p = 1;
~
!!! error TS2339: Property 'p' does not exist on type 'typeof D'.
s = 1;
~
!!! error TS2304: Cannot find name 's'.
}
}