override_function_abstract.gd 86 B

12345
  1. @abstract class A:
  2. @abstract func test(x: int) -> void
  3. class B extends A:
  4. func ➡