mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
14 lines
130 B
Plaintext
14 lines
130 B
Plaintext
|
|
struct List
|
|
{
|
|
int x;
|
|
List* next;
|
|
}
|
|
|
|
const List A = { 7, &B };
|
|
const List B = { 8, &A };
|
|
|
|
extern List d;
|
|
|
|
List c = { 7, &d };
|