/*
TEST_OUTPUT:
---
fail_compilation/fail79.d(13): Error: incompatible types for `(& a) + (& b)`: both operands are of type `int*`
---
*/
void main()
{
    int a, b;
    int* p;
    p = &a + &b;
}
/*
TEST_OUTPUT:
---
fail_compilation/fail79.d(13): Error: incompatible types for `(& a) + (& b)`: both operands are of type `int*`
---
*/
void main()
{
    int a, b;
    int* p;
    p = &a + &b;
}