Files
2021-10-29 14:16:54 +02:00

9 lines
112 B
TypeScript

abstract class Q {
abstract test();
static test() {}
method() {
this.test(); // OK
}
}