erg/tests/should_err/var_args.er
2023-03-03 16:01:20 +09:00

8 lines
128 B
Python

p! *x: Int = print! x
p! 1, 2, "a" # ERR
first *x = x[0]
assert first(1, 2, 3) == "b" # ERR
f = (*_: Int) -> None
f "a", 1, 2