aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/realloc.C
blob: 1e1c6db8aa43ccd15cbcf8a093dc41ec3a4caa74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:

extern "C" void realloc();

class bug {
public:
  void realloc(int foo,int bar);
};

void f() {
  bug c;
  c.realloc(50,50);
}