swig/Examples/test-suite/python/cpp11_inheriting_constructo...

21 lines
886 B
Python

from cpp11_inheriting_constructors import *
# Constructor inheritance via using declaration
d = DerivedClass(10)
if d.retrieveValue() != 10:
raise RuntimeError("retrieveValue() failed");
# A protected member brought into the public interface through a typedef naming a base that has inheriting constructors
if UseInheritCtorTypedef(42).protectedValue() != 42:
raise RuntimeError("UseInheritCtorTypedef.protectedValue() failed");
# A protected base method brought into the public interface through a typedef naming a template-mixin
# base whose constructors are inherited through the template parameter (issue #2951)
if UseTemplateInheritCtor(42).protectedValue() != 42:
raise RuntimeError("UseTemplateInheritCtor.protectedValue() failed");
# Member initialization at the site of the declaration
s = SomeClass()
if s.value != 5:
raise RuntimeError("s.value failed");