1 // { dg-do run { target c++11 } }
3 // Test catching as pointer and pointer to member types, [except.handle] p3.
5 extern "C" void abort (void);
7 typedef decltype(nullptr) nullptr_t;
11 void __attribute__((noinline))
32 } catch (void(*pf)()) {
37 } catch (int A::*pm) {
42 } catch (int (A::*pmf)()) {
56 } catch (void* const& p) {
61 } catch (void(* const& pf)()) {
66 } catch (int A::* const& pm) {
71 } catch (int (A::* const& pmf)()) {