``` python def func() -> int: return 3 ``` should generate: ``` python def func(): if not isinstance(3, int): raise TypeError("blabla") ```
should generate: