Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.martin / conv1.C
blob552e47b46b6a591aa25f0a0b9e2608ad26dbda50
1 // { dg-do run  }
2 struct S{
3   operator bool()
4   {
5     return true;
6   }
7 };
9 int main()
11   S a;
12   if (S &b = a);