This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
exclib/demo/trypair.c

22 lines
246 B
C

#include "exclib.h"
int main(void)
{
TRY {
THROW(3, NULL);
} CATCH(3) {
} ETRY;
TRY {
THROW(3, NULL);
} CATCH(3) {
TRY {
THROW(3, NULL);
} ETRY;
} ETRY;
EXCLIB_TRACE("Should never get here");
return 0;
}