2 // GROUPS passed old-abort
3 template <class T> class bug {
6 void Foo(const int = 0);
7 void NotRedeclared(const int);
13 template <class T> void bug<T>::NotRedeclared(const int)
17 template <class T> void bug<T>::Foo(const int)
24 bug<char> InstantiatedBug;