godot/modules/gdscript/tests/scripts/parser/errors/redefine_local_constant_with_keyword.gd

func test():
	const TEST = 25

	# Error here (can't redeclare a constant on the same scope).
	const TEST = 50