Files
jedi/test/static_analysis/star_arguments.py

11 lines
128 B
Python

def simple(a):
return a
def nested(*args):
return simple(*args)
nested(1)
#! 6 type-error-too-few-arguments
nested()