Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/exceptions/interact.cfa

    rd00d581 recfd758  
    11// Testing Interactions Between Termination and Resumption
    22
     3#include <exception.hfa>
    34#include "except-io.hfa"
    45
    5 exception star {};
    6 exception moon {};
     6EHM_EXCEPTION(star)();
     7EHM_EXCEPTION(moon)();
    78
    8 vtable(star) star_vt;
    9 vtable(moon) moon_vt;
     9EHM_VIRTUAL_TABLE(star, star_vt);
     10EHM_VIRTUAL_TABLE(moon, moon_vt);
    1011
    1112int main(int argc, char * argv[]) {
Note: See TracChangeset for help on using the changeset viewer.