Files
c3c/test/test_suite/globals/self_referencing_local.c3
2021-12-22 01:03:15 +01:00

5 lines
127 B
C

fn void test()
{
void* x = &x;
int y = y; // #error: This looks like the initialization of the variable was circular.
}