blob: d203fe320f33f7143dd071c02d59b9434cbccc01 [file] [log] [blame]
Richard Smith80b64f02016-11-02 23:41:51 +00001//===--------------- catch_member_function_pointer_02.cpp -----------------===//
2//
Chandler Carruth57b08b02019-01-19 10:56:40 +00003// 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
Richard Smith80b64f02016-11-02 23:41:51 +00006//
7//===----------------------------------------------------------------------===//
8
9// Can a noexcept member function pointer be caught by a non-noexcept catch
10// clause?
Louis Dionne8c611142020-04-17 10:29:15 -040011// UNSUPPORTED: no-exceptions, libcxxabi-no-noexcept-function-type
Richard Smith80b64f02016-11-02 23:41:51 +000012
Eric Fiselier0af53562017-05-09 00:11:02 +000013// GCC 7 and 8 support noexcept function types but this test still fails.
14// This is likely a bug in their implementation. Investigation needed.
Eric Fiselier75c9eb52019-09-13 18:43:29 +000015// XFAIL: gcc-7, gcc-8, gcc-9, gcc-10
Eric Fiselier0af53562017-05-09 00:11:02 +000016
Richard Smith80b64f02016-11-02 23:41:51 +000017#include <cassert>
18
19struct X {
20 template<bool Noexcept> void f() noexcept(Noexcept) {}
21};
22template<bool Noexcept> using FnType = void (X::*)() noexcept(Noexcept);
23
24template<bool ThrowNoexcept, bool CatchNoexcept>
25void check()
26{
27 try
28 {
29 auto p = &X::f<ThrowNoexcept>;
30 throw p;
31 assert(false);
32 }
33 catch (FnType<CatchNoexcept> p)
34 {
35 assert(ThrowNoexcept || !CatchNoexcept);
36 assert(p == &X::f<ThrowNoexcept>);
37 }
38 catch (...)
39 {
40 assert(!ThrowNoexcept && CatchNoexcept);
41 }
42}
43
44void check_deep() {
45 FnType<true> p = &X::f<true>;
46 try
47 {
48 throw &p;
49 }
50 catch (FnType<false> *q)
51 {
52 assert(false);
53 }
54 catch (FnType<true> *q)
55 {
56 }
57 catch (...)
58 {
59 assert(false);
60 }
61}
62
Louis Dionne504bc072020-10-08 13:36:33 -040063int main(int, char**)
Richard Smith80b64f02016-11-02 23:41:51 +000064{
65 check<false, false>();
66 check<false, true>();
67 check<true, false>();
68 check<true, true>();
69 check_deep();
Louis Dionne504bc072020-10-08 13:36:33 -040070
71 return 0;
Richard Smith80b64f02016-11-02 23:41:51 +000072}