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 
16e434b34fSJonathan Roelofs #include <cassert>
17e434b34fSJonathan Roelofs 
1865ace9daSEric Fiselier template <class Tp>
1965ace9daSEric Fiselier bool can_convert(Tp) { return true; }
2065ace9daSEric Fiselier 
2165ace9daSEric Fiselier template <class>
2265ace9daSEric Fiselier bool can_convert(...) { return false; }
2365ace9daSEric Fiselier 
24e434b34fSJonathan Roelofs void f() {}
25e434b34fSJonathan Roelofs 
26*504bc07dSLouis Dionne int main(int, char**)
27e434b34fSJonathan Roelofs {
28e434b34fSJonathan Roelofs     typedef void Function();
2965ace9daSEric Fiselier     assert(!can_convert<Function&>(&f));
3065ace9daSEric Fiselier     assert(!can_convert<void*>(&f));
31e434b34fSJonathan Roelofs     try
32e434b34fSJonathan Roelofs     {
33e434b34fSJonathan Roelofs         throw f;     // converts to void (*)()
34e434b34fSJonathan Roelofs         assert(false);
35e434b34fSJonathan Roelofs     }
36e434b34fSJonathan Roelofs     catch (Function& b)  // can't catch void (*)()
37e434b34fSJonathan Roelofs     {
38e434b34fSJonathan Roelofs         assert(false);
39e434b34fSJonathan Roelofs     }
4065ace9daSEric Fiselier     catch (void*) // can't catch as void*
4165ace9daSEric Fiselier     {
4265ace9daSEric Fiselier         assert(false);
4365ace9daSEric Fiselier     }
4465ace9daSEric Fiselier     catch(Function*)
4565ace9daSEric Fiselier     {
4665ace9daSEric Fiselier     }
47e434b34fSJonathan Roelofs     catch (...)
48e434b34fSJonathan Roelofs     {
4965ace9daSEric Fiselier         assert(false);
50e434b34fSJonathan Roelofs     }
51*504bc07dSLouis Dionne 
52*504bc07dSLouis Dionne     return 0;
53e434b34fSJonathan Roelofs }
54