summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/redefine_class_constant.gd
blob: 91401d32fca72b288ab6a936e0f854f787c7ccec (plain)
1
2
3
4
5
6
7
# See also `parser-warnings/shadowed-constant.gd`.
const TEST = 25


func test():
	# Error here (trying to set a new value to a constant).
	TEST = 50