* g++.dg/other/exception-specification.C: New test

From-SVN: r46286
This commit is contained in:
Richard Sandiford 2001-10-16 13:02:39 +00:00 committed by Richard Sandiford
parent e1be26f4f2
commit 2d1245b8c8
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-10-14 Richard Sandiford <rsandifo@redhat.com>
* g++.dg/other/exception-specification.C: New test
2001-10-13 Tom Rix <trix@redhat.com>
* gcc.c-torture/execute/990826-0.x: AIX XFAIL -msoft-float.

View File

@ -0,0 +1,10 @@
// { 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);