// PR c++/26195
extern void g1();
extern void g2();

int main()
{
  g1();
  g2();
}
