1// { dg-do compile }
2// { dg-options "-fgnu-tm" }
3
4void* operator new(__SIZE_TYPE__) throw (int);
5
6void *point;
7
8void funky()
9{
10  point = new (int);
11}
12