aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@redhat.com>2001-10-16 13:02:39 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2001-10-16 13:02:39 +0000
commit2d1245b8c88b20c6cfe0026b105d62e2f24b172f (patch)
tree29fe289f02bc60dbbb75ea58b208fcc45702c75c
parente1be26f4f20c5b1d0ba05c7bd354a2513886e4ba (diff)
downloadgcc-2d1245b8c88b20c6cfe0026b105d62e2f24b172f.zip
gcc-2d1245b8c88b20c6cfe0026b105d62e2f24b172f.tar.gz
gcc-2d1245b8c88b20c6cfe0026b105d62e2f24b172f.tar.bz2
* g++.dg/other/exception-specification.C: New test
From-SVN: r46286
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/g++.dg/other/exception-specification.C10
2 files changed, 14 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index b683da2..a76fcbe 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
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 0000000..64807dd
--- /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);