aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename6.C
blob: a3df71840e7f8b52273466e0aea7b0c4027c1b9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// We don't try to make implicit typename handle this case.

// Build don't link:
// Special g++ Options:

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


template <class U>
struct B : public A<U>
{
  A_Type Func();		// ERROR - candidate
};

template <class U>
A<U>::A_Type B<U>::Func()
{				// ERROR - no match
}