8sa1-gcc/gcc/testsuite/g++.old-deja/g++.other/realloc.C
Jason Merrill 82bf778342 new
From-SVN: r17654
1998-02-03 18:57:24 -05:00

15 lines
151 B
C

// 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);
}