```python Foo = FunctionType[[], int] # error: use __future__.annotations ``` ```python from __future__ import annotations Foo = FunctionType[[], int] # no error, crashes at runtime ```