diff options
Diffstat (limited to '')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/properties.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autodoc/target/properties.py b/tests/roots/test-ext-autodoc/target/properties.py new file mode 100644 index 0000000..561daef --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/properties.py @@ -0,0 +1,11 @@ +class Foo: + """docstring""" + + @property + def prop1(self) -> int: + """docstring""" + + @classmethod + @property + def prop2(self) -> int: + """docstring""" |