aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typedef4.C
blob: 4b1c5d82598eab1fc682589ed567bda920de057c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Build don't link:
// 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>;