swc/crates/swc_ecma_parser/tests/tsc/staticMemberInitialization.ts

6 lines
60 B
TypeScript

class C {
static x = 1;
}
var c = new C();
var r = C.x;