1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// bindgen-flags: --allowlist-type AllowlistMe template<typename T> class AllowlistMe { class Inner { T bar; }; int foo; Inner bar; }; struct DontAllowlistMe { void* foo; double _Complex noComplexGenerated; };