summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/redefine_local_constant.gd
blob: 97f3e55e815ba81b7b927ab613359d9fbb288a87 (plain)
1
2
3
4
5
func test():
	const TEST = 25

	# Error here (can't assign a new value to a constant).
	TEST = 50