OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / typedef24.C
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin PR c++/42225
3 // { dg-do compile }
4
5 template<class T>
6 struct A
7 {
8     typedef T I;
9 };
10
11 template<class T, int>
12 struct B
13 {
14     typedef T TT;
15     typedef typename TT::I TT_I;
16     typedef A<TT_I> TA;
17 };
18
19 template<class T>
20 void
21 foo()
22 {
23     typedef T TT;
24     typedef typename TT::I TT_I;
25     typedef A<TT_I> TA;
26 }
27
28 int
29 main()
30 {
31     foo<A<int> >();
32 }
33