blob: 33999f23de6d3e67fbd84f617f6aaac7a16faf55 [file] [log] [blame]
Howard Hinnant4b3cb1c2012-02-01 19:42:45 +00001//===----------------------- 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
14void f() {}
15
16int 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}