summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename4.C
blob: 47fb250a9a808484891eadfed364be1b0f2a71e0 (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
26
// { dg-do assemble  }
// { dg-options "-Wno-deprecated" }

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


template <class U>
struct B : public A<U>
{
};


template <class U>
struct C : public B<U>
{
  A_Type Func(); // { dg-error "does not name a type" } implicit typename
};


template <class U>
C<U>::A_Type C<U>::Func() { // { dg-error "typename" } implicit typename
}