mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
26 lines
202 B
Plaintext
26 lines
202 B
Plaintext
struct Test1
|
|
{
|
|
Test1 *x;
|
|
}
|
|
|
|
struct Test2
|
|
{
|
|
Test2[] y;
|
|
}
|
|
|
|
struct Test3 // #error: Recursive definition
|
|
{
|
|
Test3[4] z;
|
|
}
|
|
|
|
struct Test4
|
|
{
|
|
Test4[3]* w;
|
|
}
|
|
|
|
|
|
struct Test5
|
|
{
|
|
Test5[3][] w;
|
|
}
|