MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail316.d
blobab4077cd2ff129e4250b286267c6d9922d3bab0b
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail316.d(17): Error: mixin `fail316.foo.BadImpl!(uint, Mix1)` cannot resolve forward reference
5 ---
6 */
7 template BadImpl(T, alias thename)
9 void a_bad_idea(T t)
11 thename.a_bad_idea(t);
15 class foo
17 mixin BadImpl!(uint,Mix1) Mix1;
20 int main()
22 return 0;