swc/crates/swc_ecma_parser/tests/tsc/classStaticBlockUseBeforeDef2.ts
2022-02-04 17:08:38 +09:00

11 lines
127 B
TypeScript

// @target: esnext, es2022
// @noEmit: true
// @strict: true
class C {
static {
this.x = 1;
}
static x;
}