2 // GROUPS passed templates
3 template<class T> class Stack {
5 Stack (int s = 10); //Comment out "= 10" and it will compile
6 ~Stack(void); //Omitting "void" doesn't help
9 template<class T> Stack<T>::~Stack(void)
12 //If this definition comes before the one for ~Stack, the error message
13 //about redeclaration of `void Stack<int>::~Stack()' will not occur.
14 template<class T> Stack<T>::Stack(int s)