Ignore:
Timestamp:
Jul 31, 2017, 5:41:56 PM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
d6c1dd0, e59c088
Parents:
38ef0de (diff), ff7ff14a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg2:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/except-1.c

    r38ef0de r5c80197  
    4646        }
    4747        printf("Part C Complete\n");
     48
     49        try {
     50                try {
     51                        throw 7;
     52                }
     53                catch( 7 ) {
     54                        printf("Caught initial throw.\n");
     55                        try {
     56                                throw 8;
     57                        }
     58                        catch( 8 ) {
     59                                printf("Caught intermediate throw.\n");
     60                        }
     61                        throw;
     62                }
     63        }
     64        catch( 7 ) {
     65                printf("Caught final throw.\n");
     66        }
     67        printf("Part D Complete\n");
    4868}
Note: See TracChangeset for help on using the changeset viewer.