OSDN Git Service

* decl.c (compute_array_index_type): Don't try to do anything with
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp37.C
1 // Build don't link:
2 // GROUPS passed templates membertemplates
3 template <class T>
4 struct S
5 {
6   template <class U>
7   void f(U u);
8 };
9
10
11 template <class T>
12 template <class U>
13 void S<T>::f(U)
14 {
15 }
16
17 enum 
18 {
19   a = 3
20 };