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

9 lines
84 B
JavaScript

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