aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/bool4.C
blob: 8c4695dec7216c315df1111ec97e2efcfe7f714f (plain)
1
2
3
4
5
6
7
8
9
10
// Test for allowing conversion to bool.

struct A { };

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