summaryrefslogtreecommitdiff
path: root/tests/pyreverse/functional/class_diagrams/inheritance/no_standalone.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pyreverse/functional/class_diagrams/inheritance/no_standalone.py')
-rw-r--r--tests/pyreverse/functional/class_diagrams/inheritance/no_standalone.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/pyreverse/functional/class_diagrams/inheritance/no_standalone.py b/tests/pyreverse/functional/class_diagrams/inheritance/no_standalone.py
new file mode 100644
index 000000000..3d881d4c0
--- /dev/null
+++ b/tests/pyreverse/functional/class_diagrams/inheritance/no_standalone.py
@@ -0,0 +1,5 @@
+class A: pass
+
+class B(A): pass
+
+class C: pass