Lines Matching refs:throw
10 void f() throw(int);
13 void (*fp)() throw (int);
16 void g(void pfa() throw(int));
19 typedef int (*pf)() throw(int); // expected-error {{specifications are not allowed in typedefs}}
24 void (*h())() throw(int);
29 void (*i() throw(int))(void (*)() throw(float)) throw(double);
32 void (**k)(void pfa() throw(int)); // no-error
35 void (**j)() throw(int); // expected-error {{not allowed beyond a single}}
38 void (**(*h())())() throw(int); // expected-error {{not allowed beyond a single}}