c518678b14
This adds transactional clones of the sized version of operator delete. From-SVN: r230036
13 lines
153 B
C
13 lines
153 B
C
// { dg-do run }
|
|
|
|
int main ()
|
|
{
|
|
atomic_commit {
|
|
int* data = new int;
|
|
delete data;
|
|
data = new int[10];
|
|
delete[] data;
|
|
}
|
|
return 0;
|
|
}
|