1 // { dg-do compile }
2 
3 class a
4 {
5   char b;
6   void c ();
7 };
8 void
c()9 a::c ()
10 {
11   &b + ((long long) &b & 0);
12 }
13