blob: affda7907d5dfacc5798111fb6ffbe55984722f6 [file] [log] [blame]
/*
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;
}