(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
initlist73.C
// PR c++/57682
// { dg-do compile { target c++11 } }

struct Class
{
  Class (int func)
  try
  : f { func }  { }
  catch ( ... ) { }

private:
  int f;
};