1// { dg-do run } 2// { dg-options "-w" } 3// Another magic NULL problem. 4 5#include <stddef.h> 6 7int main() 8{ 9 try 10 { 11 throw(NULL); 12 } 13 catch (...) 14 { 15 } 16} 17