blob: 47e9ffb50b314b8d8900bf678c399229defa9dda [file] [log] [blame]
Douglas Gregor0fe7bea2008-11-25 03:22:00 +00001// RUN: clang -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};