Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.dg
/
abi
/
cookie2.C
blob: dc180453b706a766d9c3170c9ce800a05d95cd1b [
file
] [
log
] [
blame
]
// { dg-options "-fabi-version=1" }
void
*
operator
new
[](
__SIZE_TYPE__
,
void
*);
struct
A
{
~
A
(){}
};
int
main
()
{
A
*
a
=
(
A
*)
new
char
[
20
];
A
*
b
=
new
(
a
)
A
[
3
];
// In the 3.2 ABI, a cookie was allocated in this case.
if
(
a
==
b
)
return
1
;
}