summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typedef4.C
blob: 4ccd24663917dfd9029a22e94dd0cdf772a1cb4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

struct B1 {
  typedef int X;
};

struct B2 {
  typedef int X;
};

template <class T>
struct D : public B1, public B2 {
  typedef int X;
};

template struct D<int>;