1: /* It is nice to see how stack gets popped automatically;) */
  3: #include <stdio.h>
  5: #include "exception-local.h"
  7: int
  8: main (int argc, char **argv)
  9: {
 10:   volatile int i;
 12:   try
 13:     {
 14:       printf ("I set I to be the unity!\n");
 15:       i = 1;
 16:     }
 17:   /* I mean popped just here. */
 19:   exit (1 - i);
 20: }