(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
ice8604.d
/*
TEST_OUTPUT:
---
fail_compilation/ice8604.d(9): Error: undefined identifier `i`
---
*/
struct StructFoo
{
    static if(i) { }
    else enum z = "";
}

void main() { }