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