1// bindgen-flags: --opaque-type "B" --allowlist-type "C" --with-derive-hash --with-derive-partialeq --with-derive-eq
2
3class A;
4
5class B {
6  static A a;
7};
8
9class C {
10  B b;
11};
12