From-SVN: r23647
This commit is contained in:
Jason Merrill 1998-11-13 15:10:12 -05:00
parent 46d18cc681
commit 06ca201039
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
// Special g++ Options: -fsjlj-exceptions
// execution test - XFAIL *-*-*
void foo() throw(int) { throw 1; }
int main() {
try { foo(); }
catch(int) { return 0; }
abort();
}