9 lines
137 B
JavaScript
9 lines
137 B
JavaScript
class Test {
|
|
constructor() {
|
|
class Other extends Test {
|
|
a = () => super.test;
|
|
static a = () => super.test;
|
|
}
|
|
}
|
|
}
|