blob: 8270c1fe85be1364b30d2860c14f823a1e446bc6 [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()
{
}