blob: 3c179982fd9501b2b58d67dcce45a362b8ac0ffc [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice8604.d(9): Error: undefined identifier `i`
---
*/
struct StructFoo
{
static if(i) { }
else enum z = "";
}
void main() { }