(root)/
gcc-13.2.0/
gcc/
testsuite/
objc/
execute/
exceptions/
throw-nil.m
#include <objc/objc.h>
#include "../../../objc-obj-c++-shared/TestsuiteObject.m"

#ifdef __NEXT_RUNTIME__
/* This test only runs for the GNU runtime.  */

int main(void)
{
  return 0;
}

#else

/* Test throwing a nil exception.  A 'nil' exception can only be
   caugth by a generic exception handler.
 */

int main (void)
{
  int exception_catched = 0;
  int finally_called = 0;

  @try
    {
      @throw nil;
    }
  @catch (TestsuiteObject *exc)
    {
      abort ();
    }
  @catch (id exc)
    {
      exception_catched = 1;
    }
  @finally
    {
      finally_called = 1;
    }


  if (exception_catched != 1
      || finally_called != 1)
    {
      abort ();
    }

  return 0;
}

#endif