(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
extern-C-2.C
// 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;
  }

}