summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/errors/variable_conflicts_function.gd
blob: ce2c8784d6af53c83a2e01f5856fde695b4b898f (plain)
1
2
3
4
5
6
var test = 25

# Error here. The difference with `variable-conflicts-function.gd` is that here,
# the function is defined *before* the variable.
func test():
	pass