OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / static8.C
1 // PR c++/17585
2
3 template <void (*p)(void)> struct S03 {};
4 class C03 {
5 public:
6   static void f(void) {}
7   void g(void) { S03<&f> s03; }
8 };