blob: ebded31663bb249dff51310467a716337813562b (
plain) (
tree)
|
|
namespace uniondecl_ns{
union testUnion {
int reg;
bool b1;
bool b2;
};
#define uniondecdefmacro unionDecDefMacroExpanded
union uniondecdefmacro {
int reggie;
int bubu;
};
}; // namespace
|