blob: 401b5ecd4880cada05b88eeef827df5b31fcfb02 [file] [log] [blame]
// Build don't link:
// 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();
}