blob: 8c4695dec7216c315df1111ec97e2efcfe7f714f [file] [log] [blame]
// Test for allowing conversion to bool.
struct A { };
int main ()
{
bool b = (void*)0;
b = (int A::*)0;
b = (int (A::*)())0;
}