blob: 20974e4a184acd4ad22d49c12a12fbb875bc48d9 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice12827.d(10): Error: circular initialization of variable `ice12827.Test.i`
---
*/
struct Test
{
immutable int i = i;
}
void main()
{
}