mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
18 lines
223 B
TypeScript
18 lines
223 B
TypeScript
// @target: esnext, es2022, es2015, es5
|
|
|
|
class B {
|
|
static a = 1;
|
|
static b = 2;
|
|
}
|
|
|
|
class C extends B {
|
|
static b = 3;
|
|
static c = super.a
|
|
|
|
static {
|
|
this.b;
|
|
super.b;
|
|
super.a;
|
|
}
|
|
}
|