1
0
Fork 0
godot/modules/gdscript/tests/scripts/analyzer/features/virtual_method_implemented.gd

12 lines
204 B
GDScript

class TestOne:
func _get_property_list():
return {}
class TestTwo extends TestOne:
func _init():
var _x = _get_property_list()
func test():
var x = TestTwo.new()
var _x = x._get_property_list()