MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice9406.d
blobc1807a0f542c2520ed5b5163a5bbc9f8405eab57
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice9406.d(22): Error: `s1.mixin Mixin!() t1;
5 ` has no effect
6 ---
7 */
9 mixin template Mixin() { }
11 struct S
13 template t1()
15 mixin Mixin t1;
19 void main()
21 S s1;
22 s1.t1!();