]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/tm/pr47340.C
Merge from transactional-memory branch.
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / tm / pr47340.C
1 // { dg-do compile }
2 // { dg-options "-fgnu-tm" }
3
4 void* operator new(__SIZE_TYPE__) throw (int);
5
6 void *point;
7
8 void funky()
9 {
10 point = new (int);
11 }