Currently this gives an incompatible type error with ``--strict-optional``, although it works with plain ``object``: ```python class Empty(Protocol): pass e: Empty e = None # Error o: object o = None # This is OK ```