godot/modules/gdscript/tests/scripts/completion/common/override_function_abstract.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
84 B
GDScript3
Raw Normal View History

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