blob: 8424f75a8e81fb7fd726fa7fd0e845fabd118d49 [file] [log] [blame]
// bindgen-flags: --whitelist-type WhitelistMe
template<typename T>
class WhitelistMe {
class Inner {
T bar;
};
int foo;
Inner bar;
};
struct DontWhitelistMe {
void* foo;
double _Complex noComplexGenerated;
};