summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename6.C
blob: 734781202f160ec63cb65d59a7adcedbafd9a931 (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>
{
  A_Type Func();		// { dg-error "does not name a type" "err" }
  // { dg-message "note" "note" { target *-*-* } 13 }
};

template <class U>
A<U>::A_Type B<U>::Func()       // { dg-error "typename" } function
{				
}