Commit 2d1245b8 by Richard Sandiford Committed by Richard Sandiford

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

From-SVN: r46286
parent e1be26f4
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.
......
// { 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);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment