aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/lookup5.C
blob: afdf023b50b6fc29aa1abc55c68772420a6afb7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// { dg-do compile }

struct A {};

template <class T> struct B
{
  T a, b;
  B() {}
  B(T x, T y) : a(x), b(y) {}
  template <class U> operator B<U> () const
  { return B<U>((U)(this->a), (U)(this->b)); }
};

template <class T> struct C : public B<int>
{
  T *c;
  inline T & operator *() { return *c; }
};

template <class T> struct D : virtual public C<T> { };

void
foo (D<A> x)
{
  *x;
}