Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
realloc.C
blob: 3e50aa80490f12cb19452a348c8d5f46ac18191e [
file
] [
log
] [
blame
]
// { dg-do assemble }
extern
"C"
void
realloc
();
class
bug
{
public
:
void
realloc
(
int
foo
,
int
bar
);
};
void
f
()
{
bug c
;
c
.
realloc
(
50
,
50
);
}