TypeScript/tests/baselines/reference/scopeCheckInsideStaticMethod1.errors.txt
2014-07-12 17:30:19 -07:00

15 lines
368 B
Plaintext

==== tests/cases/compiler/scopeCheckInsideStaticMethod1.ts (2 errors) ====
class C {
private v;
public p;
static s;
static b() {
v = 1; // ERR
~
!!! Cannot find name 'v'.
C.s = 1;
this.p = 1; // ERR
~
!!! Property 'p' does not exist on type 'typeof C'.
}
}