mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 03:01:48 +03:00
11 lines
164 B
TypeScript
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());
|