aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename17.C
blob: 87b0ab3b90511132203bca4d5c5aba7d20125d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Build don't link:

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