(a)
| 57 | # Explicitly set `__annotations__` in order to circumvent the |
| 58 | # stringification performed by `from __future__ import annotations` |
| 59 | def func(a): pass |
| 60 | func.__annotations__ = {"a": typ, "return": None} |
| 61 | |
| 62 | out = get_type_hints(func) |
no outgoing calls
no test coverage detected