summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/features/class_inference_is_weak.gd
blob: 630b20c282e2f074a9c311efad21eae1384ea83f (plain)
1
2
3
4
5
6
7
8
9
10
11
# https://github.com/godotengine/godot/issues/43503

var test_var = null


func test():
	print(test_var.x)


func _init():
	test_var = Vector3()