aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/typename17.C
blob: a235d60e1e6331384a4e2366f8e8162a35fbfbe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do assemble  }

template <class T>
struct A
{
  typedef T A_Type;
};


template <class U>
struct B : public A<U>
{
  typename B<U>::A_Type Func();
};


template <class U>
typename B<U>::A_Type B<U>::Func()
{
}