blob: 64807dd267747a4808021fc3cfe4067ea6c023bb [file] [log] [blame]
// { dg-do compile }
struct S { void f (void); };
typedef void f1 (void) throw (int); // { dg-error "exception" }
typedef void (*f2) (void) throw (int); // { dg-error "exception" }
typedef void (S::*f3) (void) throw (int); // { dg-error "exception" }
void (*f4) (void) throw (int);
void (S::*f5) (void) throw (int);