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