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/throwoutside.c

17 lines
209 B
C

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