mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
21 lines
145 B
Plaintext
21 lines
145 B
Plaintext
module errors;
|
|
|
|
error TheError
|
|
{
|
|
int a;
|
|
}
|
|
|
|
error TheError2
|
|
{
|
|
byte a;
|
|
byte b;
|
|
}
|
|
|
|
error TheError3
|
|
{
|
|
void *a;
|
|
}
|
|
|
|
error OtherError;
|
|
|