2019-02-24 08:14:49 +01:00

10 lines
140 B
JavaScript

class A {
static prop = 1;
}
class B extends A {
static prop = 2;
static propA = super.prop;
static getPropA = () => super.prop;
}