Files
2025-02-28 13:27:28 +01:00

9 lines
106 B
TypeScript

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