1 // { dg-do assemble  }
2 
3 extern "C" void realloc();
4 
5 class bug {
6 public:
7   void realloc(int foo,int bar);
8 };
9 
f()10 void f() {
11   bug c;
12   c.realloc(50,50);
13 }
14 
15