OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / realloc.C
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
10 void f() {
11   bug c;
12   c.realloc(50,50);
13 }
14