aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/conv4.C
blob: 0ed0ee865631d164f1b5521b3f8f278d68a69e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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;
}