aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/conv4.C
blob: c195e41d6248e6b0b39b3a406e0e99d50b188baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do run  }
// Testcase for proper hiding of base conversion ops.

struct A
{
  operator const char *();
};

struct B : public A
{
  operator const char *() { return 0; }
};

int main( void )
{
  B b;
  const char *p = b;
}