Files
c3c/test/test_suite/errors/error_decl_ok.c3
2021-07-18 14:11:39 +02:00

21 lines
153 B
Plaintext

module errors;
errtype TheError
{
int a;
}
errtype TheError2
{
char a;
char b;
}
errtype TheError3
{
void *a;
}
errtype OtherError;