MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail17.d
blobdaec0f26d9c44ab9309a81fcd0f1cd27f3d11a23
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail17.d(11): Error: undefined identifier `B`
5 fail_compilation/fail17.d(11): Error: mixin `fail17.A!int.A.B!(T, A!T)` is not defined
6 fail_compilation/fail17.d(14): Error: template instance `fail17.A!int` error instantiating
7 ---
8 */
9 struct A(T)
11 mixin B!(T, A!(T));
14 A!(int) x;