```py from typing import TypeAlias AMONGUS: TypeAlias = "int" IMPOSTER: TypeAlias = "str" a: AMONGUS | IMPOSTER = 0 # SUS ALERT b: AMONGUS | None = None # SUS ALERT ``` Any types in a new union syntax that are fake(looking at you `None`) will be runtime errors.