re PR c++/53009 (pointer to static member function of template class is “invalid...
authorMarek Polacek <polacek@redhat.com>
Fri, 2 Aug 2019 17:51:53 +0000 (17:51 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Fri, 2 Aug 2019 17:51:53 +0000 (17:51 +0000)
PR c++/53009
* g++.dg/cpp0x/nontype3.C: New test.

From-SVN: r274027

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/nontype3.C [new file with mode: 0644]

index 3ba2518..d57410c 100644 (file)
@@ -1,5 +1,10 @@
 2019-08-02  Marek Polacek  <polacek@redhat.com>
 
+       PR c++/53009
+       * g++.dg/cpp0x/nontype3.C: New test.
+
+2019-08-02  Marek Polacek  <polacek@redhat.com>
+
        PR c++/77575
        * g++.dg/cpp0x/nontype2.C: New test.
 
diff --git a/gcc/testsuite/g++.dg/cpp0x/nontype3.C b/gcc/testsuite/g++.dg/cpp0x/nontype3.C
new file mode 100644 (file)
index 0000000..02b5f60
--- /dev/null
@@ -0,0 +1,32 @@
+// PR c++/53009
+// { dg-do compile { target c++11 } }
+
+template<typename T, T> class function_proxy;
+
+template<typename Return, typename Obj, Return(*func)(Obj)>
+struct function_proxy<Return(*)(Obj), func>
+{
+    static void wrapper(){ }
+};
+
+template<typename CT, CT> class member_helper;
+
+template<typename Class, void(Class::*fun)()>
+struct member_helper<void(Class::*)(), fun>
+{
+    static void as_free(Class& obj){ }
+
+    static void worker(){
+        (void) function_proxy<decltype(&as_free), &as_free>::wrapper;
+    }
+};
+
+struct Test
+{
+    void test(){ }
+};
+
+int main()
+{
+    member_helper<decltype(&Test::test), &Test::test>::worker();
+}