aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/overload7.C
blob: 2dc3b031a790c4ddcb16965ec5dd04f80c1335cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do assemble  }
// Bug: g++ thinks there is a default conversion from A& to B*.
//      There isn't.

struct A {
  operator A* ();
};

struct B: public A { };

void foo (B* bp);

void bar (A& a) {
  foo (a);			// { dg-error "" } 
}