Home | History | Annotate | Download | only in test

Lines Matching defs:noexcept

10 // Can a noexcept member function pointer be caught by a non-noexcept catch
12 // UNSUPPORTED: libcxxabi-no-exceptions, libcxxabi-no-noexcept-function-type
14 // GCC 7 and 8 support noexcept function types but this test still fails.
21 template<bool Noexcept> void f() noexcept(Noexcept) {}
23 template<bool Noexcept> using FnType = void (X::*)() noexcept(Noexcept);