blob: d8a4e14b4b71519bbddfc825778c7ce0f70aeff7 [file] [log] [blame]
// PR c++/85580
extern "C"
{
void f1()
{
union some_type{
char a[2];
int b;
} variable;
}
void f2()
{
union some_type{
char a[2];
int b;
} variable;
}
}