blob: ef858c95dace9f3344a113d96c9a149491fc2ac3 [file] [log] [blame]
// 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;
};