summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/gen-destructors-neg.hpp
blob: 5ede3ba357c11e84e61a8a68d029f94658cfba76 (plain)
1
2
3
4
5
6
7
8
9
// bindgen-flags: --generate types,functions
//
// NB: This is intended to _not_ generate destructors.

class Foo {
  int bar;
 public:
  ~Foo();
};