Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr90194.C
blob: f0c3a77db8af062f3ae0e15a80497a115c25f585 [
file
] [
log
] [
blame
]
// { dg-do compile }
// { dg-additional-options "-g" }
struct
cb
{
int
yr
;
};
void
*
operator
new
(
__SIZE_TYPE__
,
void
*
nq
)
{
return
nq
;
}
void
af
(
int
xn
)
{
new
(&
xn
)
cb
{
};
}