1# Test ``inspect.formatannotation``
2# https://github.com/python/cpython/issues/96073
3
4from typing import Union, List
5
6ann = Union[List[str], int]
7
8# mock typing._type_repr behaviour
9class A: ...
10
11A.__module__ = 'testModule.typing'
12A.__qualname__ = 'A'
13
14ann1 = Union[List[A], int]
15