summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/warnings/shadowed_variable_class.gd
blob: 66dcf309e8470fea04ce2177a359829737745c45 (plain)
1
2
3
4
5
6
7
8
var foo = 123


func test():
	# Notice the `var` keyword. Without this keyword, no warning would be emitted
	# because no new variable would be created. Instead, the class variable's value
	# would be overwritten.
	var foo = 456