summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/errors/assignment_in_if.gd
blob: 8c3a9085324c6e211f9ba757544feb515455bca0 (plain)
1
2
3
4
func test():
	# Error here.
	if foo = 25:
		print(foo)