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