* g++.dg/other/exception-specification.C: New test
From-SVN: r46286
This commit is contained in:
parent
e1be26f4f2
commit
2d1245b8c8
@ -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>
|
2001-10-13 Tom Rix <trix@redhat.com>
|
||||||
|
|
||||||
* gcc.c-torture/execute/990826-0.x: AIX XFAIL -msoft-float.
|
* gcc.c-torture/execute/990826-0.x: AIX XFAIL -msoft-float.
|
||||||
|
10
gcc/testsuite/g++.dg/other/exception-specification.C
Normal file
10
gcc/testsuite/g++.dg/other/exception-specification.C
Normal 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);
|
Loading…
Reference in New Issue
Block a user