Files
2018-08-02 17:53:23 +01:00

8 lines
96 B
JavaScript

class Foo {
static bar() {
this.baz; // OK
}
static baz() {}
baz() {}
}