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

8 lines
83 B
JavaScript

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