diff options
Diffstat (limited to 'tests/headers/public-dtor.hpp')
-rw-r--r-- | tests/headers/public-dtor.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/headers/public-dtor.hpp b/tests/headers/public-dtor.hpp new file mode 100644 index 00000000..5d4fb592 --- /dev/null +++ b/tests/headers/public-dtor.hpp @@ -0,0 +1,15 @@ + + +namespace cv { +class String { +public: + ~String(); +}; + + +inline +String::~String() +{ +} + +} |