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

24 lines
277 B
C
Raw Permalink Normal View History

#include "exclib.h"
int main(void)
{
TRY {
TRY {
TRY {
THROW(3, NULL);
} CLEANUP {
} EXCEPT {
} FINALLY {
} ETRY;
} CLEANUP {
} EXCEPT {
} FINALLY {
} ETRY;
} CLEANUP {
} EXCEPT {
} FINALLY {
} ETRY;
return 0;
}