aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/typename21.C
blob: bd15b567a29aed4deb6dbb5f844346b522175ace (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
// { dg-do assemble  }
// { dg-options "" }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T>
struct S1 {
  typedef T X;
};

template <class T>
struct B {
  typedef T I;
};

template <class T>
struct S2 : public B<T> {
  struct I {};

  typedef typename S1<I>::X IX;

  void f(IX);
};

template <class T>
void S2<T>::f(IX) {}