blob: 3185331be9f5c173a9632ab0b7a8312a3af64b66 [file] [log] [blame]
// PR c++/37037
typedef void F(void);
template <typename T> struct S
{
static F f;
};
template class S<int>;
template <class T> void S<T>::f(void)
{}