Behold: ``` python def f(a: Optional[str], b: Optional[str]) -> bool: return a == b ``` We get this beautiful error with `--strict-optional`: ``` error: Unsupported left operand type for == (some union) ```