From 2d1245b8c88b20c6cfe0026b105d62e2f24b172f Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Tue, 16 Oct 2001 13:02:39 +0000 Subject: [PATCH] * g++.dg/other/exception-specification.C: New test From-SVN: r46286 --- gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/g++.dg/other/exception-specification.C | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 gcc/testsuite/g++.dg/other/exception-specification.C diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b683da295ef..a76fcbe6f88 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2001-10-14 Richard Sandiford + + * g++.dg/other/exception-specification.C: New test + 2001-10-13 Tom Rix * gcc.c-torture/execute/990826-0.x: AIX XFAIL -msoft-float. diff --git a/gcc/testsuite/g++.dg/other/exception-specification.C b/gcc/testsuite/g++.dg/other/exception-specification.C new file mode 100644 index 00000000000..64807dd2677 --- /dev/null +++ b/gcc/testsuite/g++.dg/other/exception-specification.C @@ -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);