blob: b2203c96df7256a1aa8bddf93942e9819c4fd5a8 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -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};