mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-21 21:27:44 +01: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;
|
||
|
}
|