(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
tm/
pr47340.C
// { dg-do compile }
// { dg-options "-fgnu-tm" }

void* operator new(__SIZE_TYPE__)
#if __cplusplus <= 201402L
throw (int)			// { dg-warning "deprecated" "" { target { c++11 && { ! c++17 } } } }
#endif
;

void *point;

void funky()
{
  point = new (int);
}