standalone: Add vararg.py

This commit is contained in:
David Mak 2024-07-09 14:48:30 +08:00
parent 3ff6db1a29
commit ac0d83ef98
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
def f(*args: int32):
pass
def run() -> int32:
f()
f(1)
f(1, 2)
f(1, 2, 3)
return 0