(x)
| 91 | # dict is already registered by default with MapSerializer |
| 92 | |
| 93 | def outer_function(x): |
| 94 | def inner_function(y): |
| 95 | return x + y |
| 96 | |
| 97 | return inner_function |
| 98 | |
| 99 | # Create a nested function |
| 100 | nested_func = outer_function(10) |
no outgoing calls
no test coverage detected