duplicate_abstract_func.gd 86 B

1234567
  1. extends RefCounted
  2. abstract class A:
  3. abstract abstract func f()
  4. func test():
  5. pass