``` from typing import Union, Any d: Union[int, None] q: Any q[0:d] # error: Slice index must be an integer or None ``` Reported by @chrish42.