mirror of https://github.com/aamine/cbc
6 lines
121 B
Plaintext
6 lines
121 B
Plaintext
|
// indirect recursion
|
||
|
struct a { struct b x; };
|
||
|
struct b { struct a x; };
|
||
|
|
||
|
int main(int argc, char **argv) { return 0; }
|