• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===----------------------- catch_function_01.cpp ------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // Can you have a catch clause of array type that catches anything?
11 
12 #include <cassert>
13 
f()14 void f() {}
15 
main()16 int main()
17 {
18     typedef void Function();
19     try
20     {
21         throw f;     // converts to void (*)()
22         assert(false);
23     }
24     catch (Function& b)  // can't catch void (*)()
25     {
26         assert(false);
27     }
28     catch (...)
29     {
30     }
31 }
32