OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / typename17.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   typename B<U>::A_Type Func();
14 };
15
16
17 template <class U>
18 typename B<U>::A_Type B<U>::Func()
19 {
20 }