summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/parser/errors/default_value_in_function_call.gd
blob: 2581d873dd73550ed767502d834e2cbe8ee5fc98 (plain)
1
2
3
4
5
6
7
func hello(arg1):
	print(arg1)


func test():
	# Error here.
	hello(arg1 = 25)