1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Can a noexcept member function pointer be caught by a non-noexcept catch clause?
10 // UNSUPPORTED: c++03, c++11, c++14
11 // UNSUPPORTED: no-exceptions
13 // Support for catching a function pointer including noexcept was shipped in macOS 10.13
14 // XFAIL: stdlib=apple-libc++ && target={{.+}}-apple-macosx10.{{9|10|11|12}}
16 // GCC supports noexcept function types but this test still fails.
17 // This is likely a bug in their implementation. Investigation needed.
23 template<bool Noexcept
> void f() noexcept(Noexcept
) {}
25 template<bool Noexcept
> using FnType
= void (X::*)() noexcept(Noexcept
);
27 template<bool ThrowNoexcept
, bool CatchNoexcept
>
32 auto p
= &X::f
<ThrowNoexcept
>;
36 catch (FnType
<CatchNoexcept
> p
)
38 assert(ThrowNoexcept
|| !CatchNoexcept
);
39 assert(p
== &X::f
<ThrowNoexcept
>);
43 assert(!ThrowNoexcept
&& CatchNoexcept
);
48 FnType
<true> p
= &X::f
<true>;
53 catch (FnType
<false> *q
)
57 catch (FnType
<true> *q
)
68 check
<false, false>();