MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail51.d
blobb5a11d45c3cc85e296e0187815c82a5956522049
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail51.d(11): Error: interface `fail51.B` circular inheritance of interface
5 ---
6 */
8 // interface A { void f(); }
10 interface A : B { void f(); }
11 interface B : A { void g(); }