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

11 lines
127 B
TypeScript
Raw Normal View History

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