15 lines
138 B
Python
15 lines
138 B
Python
from typing import Self
|
|
|
|
|
|
class A:
|
|
@classmethod
|
|
def test(cls) -> Self:
|
|
return cls()
|
|
|
|
|
|
class B(A):
|
|
pass
|
|
|
|
|
|
a = B.test()
|