2021-03-12 23:29:55 +01:00

9 lines
115 B
JavaScript

class Foo {
static bar = 42;
static #_ = (() => {
this.foo = Foo.bar;
})();
}
expect(Foo.foo).toBe(42);