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

11 lines
164 B
TypeScript
Raw Normal View History

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