MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail79.d
blobaffda7907d5dfacc5798111fb6ffbe55984722f6
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail79.d(13): Error: incompatible types for `(& a) + (& b)`: both operands are of type `int*`
5 ---
6 */
8 void main()
10 int a, b;
11 int* p;
13 p = &a + &b;