diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-16 13:02:39 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-16 13:02:39 +0000 |
commit | bbf9fb6a7dfb94df60c1f8625f60ce58dccebbbb (patch) | |
tree | 29fe289f02bc60dbbb75ea58b208fcc45702c75c /gcc | |
parent | a49facc5bec86f6157a09853b51fc05f8e220f65 (diff) | |
download | gcc-bbf9fb6a7dfb94df60c1f8625f60ce58dccebbbb.tar.gz |
* g++.dg/other/exception-specification.C: New test
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46286 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/other/exception-specification.C | 10 |
2 files changed, 14 insertions, 0 deletions
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 <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 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); |