Files
ci2/tests/02_uncaught.c
2026-04-21 19:01:29 -05:00

15 lines
272 B
C

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