(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail79.d
/*
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;
}