OSDN Git Service

* g++.dg/eh/weak1.C: Don't xfail hppa*64*-*-*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / eh / spec1.C
1 // Check that we allow an exception specification on a reference-to-function.
2 // { dg-do compile }
3
4 void f () throw ();
5 void (&fp)() throw () = f;