aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename21.C
blob: 2dc52aa429ae31547ed359ddddddc9950ca0b940 (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
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
// Special g++ Options:

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) {}