blob: e6c3c757f012e882c77c6e834a6c15227147ef23 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only %s
2
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};
16
17void (*fptr)() throw();