2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / ptrmem10.C
blobf6f97d9c021e6c9d75908e7216a3bdc1c8fd7896
1 // { dg-do run  }
2 // Test that we properly convert a constant ptm to bool.
4 class A { };
6 int main()
8   int A::*const p = 0;
9   if (p)
10     return 1;