godot/modules/gdscript/tests/scripts/completion/common/override_function_abstract.gd
Aaron Franke 1085200f51
GDScript: Replace abstract keyword with @abstract annotation
Co-authored-by: Danil Alexeev <dalexeev12@yandex.ru>
2025-06-23 12:24:45 -07:00

5 lines
86 B
GDScript

@abstract class A:
@abstract func test(x: int) -> void
class B extends A:
func