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

11 lines
112 B
TypeScript

// @useDefineForClassFields: false
// @target: es2015
class C {
static #x = 1;
static {
C.#x;
}
}