### Summary [Playground link](https://play.ty.dev/bc4e0448-5cd5-42cf-8bbd-e61ac1105328) ```python from collections.abc import Callable def foo(goo: Callable | None = None): if goo is not None: def inner(): goo() ``` ### Version 5e02d839d