summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-801-opaque-sloppiness.hpp
blob: 6b707f4edea7f868131938ee88a67607890aad9e (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: --opaque-type "B" --allowlist-type "C" --with-derive-hash --with-derive-partialeq --with-derive-eq

class A;

class B {
  static A a;
};

class C {
  B b;
};