MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail4269f.d
blob7a719c7c3a34ce855cce2b066585ff8e84c4b8c2
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail4269f.d(9): Error: `alias X16 = X16;` cannot alias itself, use a qualified name to create an overload set
5 ---
6 */
8 static if(is(typeof(X16))) {}
9 alias X16 X16;
11 void main() {}