1// PR c++/17585
2
3template <void (*p)(void)> struct S03 {};
4class C03 {
5public:
6  static void f(void) {}
7  void g(void) { S03<&f> s03; }
8};
9