1 // PR c++/90916 ICE in retrieve_specialization
2 
3 template <typename> struct S
4 {
5   struct A;
6   struct f A ();
7 };
8 template class S <int>;
9