except/tests/02_uncaught.c
2025-04-04 08:45:31 -05:00

15 lines
244 B
C

#define DEBUG
#include "../include/except.h"
#include <stdlib.h>
#include <stdio.h>
int main(void){
printf("\n\n");
printf("Uncaught exceptions sanity test.\n");
Exception u = {NULL};
RAISE(u);
return EXIT_SUCCESS;
}