aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb88.C
blob: 006fe568e5105918e809f0d4e2a2d6678a0cd3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Another magic NULL problem.
// Special g++ Options: -w

#include <stddef.h>

int main()
{
  try
    {
      throw(NULL);
    }
  catch (...)
    {
    }
}