From-SVN: r20222
This commit is contained in:
Jason Merrill 1998-06-03 22:26:15 -04:00
parent 0228fa7e4e
commit 9d24de29f5

View File

@ -0,0 +1,12 @@
#include <stddef.h>
int main()
{
try
{
throw(NULL);
}
catch (...)
{
}
}