OSDN Git Service

27944795ae29d3d5dcda6033438aecba4dd35a23
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / typename6.C
1 // { dg-do assemble  }
2
3 template <class T>
4 struct A
5 {
6   typedef T A_Type;
7 };
8
9
10 template <class U>
11 struct B : public A<U>
12 {
13   A_Type Func();                // { dg-error "does not name a type" "err" }
14   // { dg-message "note" "note" { target *-*-* } 13 }
15 };
16
17 template <class U>
18 A<U>::A_Type B<U>::Func()       // { dg-error "expected" } function
19 {                               
20 }