blob: 006fe568e5105918e809f0d4e2a2d6678a0cd3bf [file] [log] [blame]
// Another magic NULL problem.
// Special g++ Options: -w
#include <stddef.h>
int main()
{
try
{
throw(NULL);
}
catch (...)
{
}
}