DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / scopeCheckInsideStaticMethod1.ts
12345678910
class C { private v; public p; static s; static b() { v = 1; // ERR C.s = 1; this.p = 1; // ERR } }