Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/linking/exception-withthreads.cfa

    r5715d43 recfd758  
    1818#include "../exceptions/with-threads.hfa"
    1919
    20 TRIVIAL_EXCEPTION(ping);
     20EHM_EXCEPTION(ping)();
     21EHM_VIRTUAL_TABLE(ping, ping_vt);
    2122
    2223int main(void) {
    2324        try {
    24                 throwResume (ping){};
     25                throwResume (ping){&ping_vt};
    2526        } catchResume (ping *) {
    2627                printf("%s threads\n", threading_enabled() ? "with" : "no");
Note: See TracChangeset for help on using the changeset viewer.