(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
ice12827.d
/*
TEST_OUTPUT:
---
fail_compilation/ice12827.d(10): Error: circular initialization of variable `ice12827.Test.i`
---
*/

struct Test
{
	immutable int i = i;
}

void main()
{
}