Merge pull request #7003 from asgerf/js/mixed-this-fp

Approved by erik-krogh
This commit is contained in:
CodeQL CI
2021-11-01 09:13:21 +00:00
committed by GitHub
2 changed files with 11 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
abstract class Q {
abstract test();
static test() {}
method() {
this.test(); // OK
}
}