blob: 0a87ab70230292bd8759fa9ea314319d2e6d4437 [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};
Sebastian Redl7dc81342009-04-29 17:30:04 +000016
17void (*fptr)() throw();