godot/modules/gdscript/tests/scripts/parser/features/trailing_comma_in_function_args.gd

# See https://github.com/godotengine/godot/issues/41066.

func f(p, ): ## <-- no errors
	print(p)

func test():
	f(0, ) ## <-- no error