DEBSOURCES
Skip Quicknav
sources / godot / 4.4.1%2Bds-1 / modules / gdscript / tests / scripts / analyzer / features / class_inference_is_weak.gd
1234567891011
# https://github.com/godotengine/godot/issues/43503 var test_var = null func test(): print(test_var.x) func _init(): test_var = Vector3()