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

20 lines
811 B
Plaintext
Raw Normal View History

tests/cases/compiler/scopeCheckExtendedClassInsideStaticMethod1.ts(4,7): error TS2304: Cannot find name 'v'.
tests/cases/compiler/scopeCheckExtendedClassInsideStaticMethod1.ts(5,12): error TS2339: Property 'p' does not exist on type 'typeof D'.
tests/cases/compiler/scopeCheckExtendedClassInsideStaticMethod1.ts(6,7): error TS2304: Cannot find name 's'.
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;
~
!!! error TS2304: Cannot find name 'v'.
2014-07-13 01:04:16 +02:00
this.p = 1;
~
!!! error TS2339: Property 'p' does not exist on type 'typeof D'.
2014-07-13 01:04:16 +02:00
s = 1;
~
!!! error TS2304: Cannot find name 's'.
2014-07-13 01:04:16 +02:00
}
}