C default arguments are allowed, so migrated the error test to a proper test, as no error or warning is expected.
6 lines
149 B
Python
6 lines
149 B
Python
import default_args_c
|
|
|
|
if default_args_c.foo1() != 1:
|
|
raise RuntimeError("failed")
|
|
if default_args_c.foo43() != 43:
|
|
raise RuntimeError("failed")
|