Commit bb937853 by Richard Henderson Committed by Richard Henderson

* g++.old-deja/g++.oliva/delete3.C (main): Catch the exception.

From-SVN: r40377
parent 066c84df
2001-03-10 Richard Henderson <rth@redhat.com>
* g++.old-deja/g++.oliva/delete3.C (main): Catch the exception.
2001-03-07 Neil Booth <neil@daikokuya.demon.co.uk>
* g++.old-deja/g++.other/crash31.C: XFAIL.
......
......@@ -29,8 +29,9 @@ struct Bar : virtual Foo {
};
int main() {
delete [] new Bar[2];
try {
delete [] new Bar[2];
} catch (...) {
}
abort();
}
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