A more complex function with default arguments.
(a, b, c=10)
| 58 | return x + 1 |
| 59 | |
| 60 | def complex_function(a, b, c=10): |
| 61 | """A more complex function with default arguments.""" |
| 62 | return a * b + c |
| 63 | |
| 64 | # Test regular function |
| 65 | fory.register_type(type(add_one)) |
no outgoing calls
no test coverage detected