saqut-compiler/examples/symbols/cyclic.sqt

13 lines
141 B
Plaintext

// E010 — döngüsel struct (by-value çevrim → sonsuz boyut)
struct A {
B b;
}
struct B {
A a;
}
int main() {
return 0;
}