aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/cookie2.C
blob: dc180453b706a766d9c3170c9ce800a05d95cd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { 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;
}