diff options
Diffstat (limited to 'tests/headers/constructors.hpp')
-rw-r--r-- | tests/headers/constructors.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/headers/constructors.hpp b/tests/headers/constructors.hpp new file mode 100644 index 00000000..d4174889 --- /dev/null +++ b/tests/headers/constructors.hpp @@ -0,0 +1,13 @@ + +class TestOverload { + // This one shouldnt' be generated. + TestOverload(); +public: + TestOverload(int); + TestOverload(double); +}; + +class TestPublicNoArgs { +public: + TestPublicNoArgs(); +}; |