summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/union_dtor.hpp
blob: 399dc89db6088dd7de5de307c5aa33e7c3b0880e (plain)
1
2
3
4
5
union UnionWithDtor {
  ~UnionWithDtor();
  int mFoo;
  void* mBar;
};