blob: 8b9c2c60887cbf0981ffdfecb26f181c288d03d8 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-Wno-builtin-declaration-mismatch" }
extern "C" void realloc();
class bug {
public:
void realloc(int foo,int bar);
};
void f() {
bug c;
c.realloc(50,50);
}