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

9 lines
115 B
TypeScript
Raw Normal View History

// @target: es2015
class C {
static s = C.#method();
static #method() { return 42; }
}
console.log(C.s);