Closed
Description
Code:
from abc import abstractmethod
class Some:
@property
@abstractmethod
def x(self) -> int:
return 1
Stub:
class Some:
@property
def x(self) -> int: ...
No errors are shown.
It should raise an error about abstract state mismatch.
Realted python/typeshed#8726