In this example, ```python Foo = str | int reveal_type(Foo) ``` mypy (0.990, Python 3.10.6) reveals the type as `builtins.object`. It should be recognized as `types.UnionType` (new in Python 3.10).