>>> import typing as t; import typing_extensions as tx
>>> T = t.TypeAliasType("T", object)
>>> TX = tx.TypeAliasType("TX", object)
>>> T | TX
Traceback (most recent call last):
File "<python-input-5>", line 1, in <module>
T | TX
~~^~~~
TypeError: unsupported operand type(s) for |: 'typing.TypeAliasType' and 'TypeAliasType'