rt_gccstream/gcc/testsuite/g++.old-deja/g++.mike/p2806.C

21 lines
214 B
C

// { dg-do assemble }
// GROUPS passed
template<class T>
class List
{
public:
List();
void f() const;
};
template<class T>
void List<T>::f() const
{
}
void func()
{
List<int> list;
list.f();
}