aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/copyctor_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/copyctor_runme.py')
-rw-r--r--Examples/test-suite/python/copyctor_runme.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Examples/test-suite/python/copyctor_runme.py b/Examples/test-suite/python/copyctor_runme.py
new file mode 100644
index 000000000..3a16fc2b4
--- /dev/null
+++ b/Examples/test-suite/python/copyctor_runme.py
@@ -0,0 +1,13 @@
+from copyctor import *
+
+bar = Bar()
+bar = Bar(bar)
+
+foo = Foo()
+foo = Foo(bar)
+
+car = Car()
+
+hoo = Hoo()
+hoo = Hoo(bar)
+hoo = Hoo(car)