summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/errors/function_conflicts_variable.gd
blob: 5c86710a40e676f3a7637da3470ae59bffec5bc8 (plain)
1
2
3
4
5
6
7
func test():
	pass


# Error here. The difference with `variable-conflicts-function.gd` is that here,
# the function is defined *before* the variable.
var test = 25