summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/public-dtor.hpp
blob: 5d4fb592a1a82801636fa85f58d9624dcfe1b004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


namespace cv {
class String {
public:
  ~String();
};


inline
String::~String()
{
}

}