bool4.C   [plain text]


// Test for allowing conversion to bool.

struct A { };

int main ()
{
  bool b = (void*)0;
  b = (int A::*)0;
  b = (int (A::*)())0;
}