diff options
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/properties.py')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/properties.py | 6 |
1 files changed, 6 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 000000000..409fc2b5d --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/properties.py @@ -0,0 +1,6 @@ +class Foo: + """docstring""" + + @property + def prop(self) -> int: + """docstring""" |