MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice12827.d
blob20974e4a184acd4ad22d49c12a12fbb875bc48d9
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice12827.d(10): Error: circular initialization of variable `ice12827.Test.i`
5 ---
6 */
8 struct Test
10 immutable int i = i;
13 void main()