blob: e6c3c757f012e882c77c6e834a6c15227147ef23 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only %s
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00002
3struct X { };
4
5struct Y { };
6
7void f() throw() { }
8
9void g(int) throw(X) { }
10
11void h() throw(X, Y) { }
12
13class Class {
14 void foo() throw (X, Y) { }
15};
Sebastian Redl7dc81342009-04-29 17:30:04 +000016
17void (*fptr)() throw();