Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/exceptions/defaults.cfa

    r381132b r8ad5752  
    3030                throwResume (log_message){(char *)"Should be printed.\n"};
    3131        } catchResume (log_message * this) {
    32                 printf("%s", this->virtual_table->msg(this));
     32                printf(this->virtual_table->msg(this));
    3333        }
    3434        // But we don't have to:
     
    6969}
    7070
    71 TRIVIAL_EXCEPTION(second);
    72 
    73 void cross_test(void) {
    74         void defaultTerminationHandler(first &) {
    75                 printf("cross terminate default\n");
    76                 throw (second){};
    77         }
    78         void defaultResumptionHandler(first &) {
    79                 printf("cross resume default\n");
    80                 throwResume (second){};
    81         }
    82         try {
    83                 printf("cross terminate throw\n");
    84                 throw (first){};
    85         } catch (second *) {
    86                 printf("cross terminate catch\n");
    87         }
    88         try {
    89                 printf("cross resume throw\n");
    90                 throwResume (first){};
    91         } catchResume (second *) {
    92                 printf("cross resume catch\n");
    93         }
    94 }
    95 
    9671int main(int argc, char * argv[]) {
    9772        log_test();
    9873        jump_test();
    9974        unhandled_test();
    100         cross_test();
    10175}
Note: See TracChangeset for help on using the changeset viewer.