1e434b34fSJonathan Roelofs //===----------------------- catch_function_01.cpp ------------------------===//
2e434b34fSJonathan Roelofs //
357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6e434b34fSJonathan Roelofs //
7e434b34fSJonathan Roelofs //===----------------------------------------------------------------------===//
8e434b34fSJonathan Roelofs 
9e434b34fSJonathan Roelofs // Can you have a catch clause of array type that catches anything?
10e434b34fSJonathan Roelofs 
113f7c2074SEric Fiselier // GCC incorrectly allows function pointer to be caught by reference.
123f7c2074SEric Fiselier // See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69372
133f7c2074SEric Fiselier // XFAIL: gcc
148c61114cSLouis Dionne // UNSUPPORTED: no-exceptions
153f7c2074SEric Fiselier 
16*60ba1fefSLouis Dionne // 65ace9daa360 made it in the dylib in macOS 10.11
17*60ba1fefSLouis Dionne // XFAIL: with_system_cxx_lib=macosx10.10
18*60ba1fefSLouis Dionne // XFAIL: with_system_cxx_lib=macosx10.9
19*60ba1fefSLouis Dionne 
20e434b34fSJonathan Roelofs #include <cassert>
21e434b34fSJonathan Roelofs 
2265ace9daSEric Fiselier template <class Tp>
2365ace9daSEric Fiselier bool can_convert(Tp) { return true; }
2465ace9daSEric Fiselier 
2565ace9daSEric Fiselier template <class>
2665ace9daSEric Fiselier bool can_convert(...) { return false; }
2765ace9daSEric Fiselier 
28e434b34fSJonathan Roelofs void f() {}
29e434b34fSJonathan Roelofs 
30504bc07dSLouis Dionne int main(int, char**)
31e434b34fSJonathan Roelofs {
32e434b34fSJonathan Roelofs     typedef void Function();
3365ace9daSEric Fiselier     assert(!can_convert<Function&>(&f));
3465ace9daSEric Fiselier     assert(!can_convert<void*>(&f));
35e434b34fSJonathan Roelofs     try
36e434b34fSJonathan Roelofs     {
37e434b34fSJonathan Roelofs         throw f;     // converts to void (*)()
38e434b34fSJonathan Roelofs         assert(false);
39e434b34fSJonathan Roelofs     }
40e434b34fSJonathan Roelofs     catch (Function& b)  // can't catch void (*)()
41e434b34fSJonathan Roelofs     {
42e434b34fSJonathan Roelofs         assert(false);
43e434b34fSJonathan Roelofs     }
4465ace9daSEric Fiselier     catch (void*) // can't catch as void*
4565ace9daSEric Fiselier     {
4665ace9daSEric Fiselier         assert(false);
4765ace9daSEric Fiselier     }
4865ace9daSEric Fiselier     catch(Function*)
4965ace9daSEric Fiselier     {
5065ace9daSEric Fiselier     }
51e434b34fSJonathan Roelofs     catch (...)
52e434b34fSJonathan Roelofs     {
5365ace9daSEric Fiselier         assert(false);
54e434b34fSJonathan Roelofs     }
55504bc07dSLouis Dionne 
56504bc07dSLouis Dionne     return 0;
57e434b34fSJonathan Roelofs }
58