// PR c++/112588 void f(int*); template struct S { void g(int n) { f(&n); } }; template struct S;