Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
defarg5.C
blob: 9b294766f3d697491e95a801f1315da4e6b10704 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: the SAVE_EXPR in the new expression remembers that it's in g(),
// causing the compiler to crash in h().
struct
A
{
A
();
};
void
f
(
A
*
=
new
A
);
void
g
()
{
f
();
}
void
h
()
{
f
();
}