82bf778342
From-SVN: r17654
15 lines
151 B
C
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);
|
|
}
|
|
|