mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
21 lines
153 B
Plaintext
21 lines
153 B
Plaintext
module errors;
|
|
|
|
errtype TheError
|
|
{
|
|
int a;
|
|
}
|
|
|
|
errtype TheError2
|
|
{
|
|
char a;
|
|
char b;
|
|
}
|
|
|
|
errtype TheError3
|
|
{
|
|
void *a;
|
|
}
|
|
|
|
errtype OtherError;
|
|
|