blob: da06984e9ef05ddc044be417181e155f14fc3e16 [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;
}