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

11 lines
164 B
TypeScript

// @target: es2015
const C = class {
#bar() {}
foo() {
this.#bar = console.log("should log this then throw");
}
}
console.log(new C().foo());