mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
12 lines
143 B
TypeScript
12 lines
143 B
TypeScript
// @target: es2015
|
|
|
|
class A {
|
|
#foo = this.#bar; // Error
|
|
#bar = 3;
|
|
}
|
|
|
|
class B {
|
|
#foo = this.#bar; // Error
|
|
#bar = this.#foo;
|
|
}
|