OSDN Git Service

* call.c (add_candidates): Add first_arg and return_type parms.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.brendan / template13.C
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 template<class T>
4 class ListS {
5 public:
6     class Vix {
7     public:
8         Vix();
9     };
10 };
11
12 template<class T>
13 ListS<T>::Vix::Vix()
14 { }
15