godot/modules/gdscript/tests/scripts/analyzer/errors/missing_argument.gd

func args(a, b):
	print(a)
	print(b)

func test():
	args(1,)