mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 18:28:13 +03:00
17 lines
326 B
TypeScript
17 lines
326 B
TypeScript
// @strict: true
|
|
// @target: es6
|
|
|
|
class A1 {
|
|
static get #prop() { return ""; }
|
|
static set #prop(param: string) { }
|
|
|
|
static get #roProp() { return ""; }
|
|
|
|
constructor(name: string) {
|
|
A1.#prop = "";
|
|
A1.#roProp = ""; // Error
|
|
console.log(A1.#prop);
|
|
console.log(A1.#roProp);
|
|
}
|
|
}
|