1: /* No fitting ONs. */
3: #include <stdio.h>
5: #include "exception-local.h"
7: int
8: main (int argc, char **argv)
9: {
10: try
11: {
12: throw (1);
13: }
14: except
15: {
16: on (0)
17: {
18: printf ("This shouldn't happen\n");
19: }
20: }
21: exit (0);
22: }