PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / typedef21.C
blob3185331be9f5c173a9632ab0b7a8312a3af64b66
1 // PR c++/37037
3 typedef void F(void);
4 template <typename T> struct S 
6     static F f;
7 };
8 template class S<int>;
9 template <class T> void S<T>::f(void)