mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
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;
|
|
}
|