re PR c++/60130 (Sorry, unimplemented: mangling argument_pack_select)
authorPaolo Carlini <paolo.carlini@oracle.com>
Tue, 24 Mar 2015 16:43:33 +0000 (16:43 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Tue, 24 Mar 2015 16:43:33 +0000 (16:43 +0000)
2015-03-24  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/60130
* g++.dg/cpp0x/vt-60130.C: New.

From-SVN: r221637

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

index 4a29edfa23180548e3f8e58c877bcfbcc83eacfc..dadd843921daac700475ce15e02e30edf62312e8 100644 (file)
@@ -1,3 +1,8 @@
+2015-03-24  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/60130
+       * g++.dg/cpp0x/vt-60130.C: New.
+
 2015-03-24  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/61971
diff --git a/gcc/testsuite/g++.dg/cpp0x/vt-60130.C b/gcc/testsuite/g++.dg/cpp0x/vt-60130.C
new file mode 100644 (file)
index 0000000..50662db
--- /dev/null
@@ -0,0 +1,21 @@
+// PR c++/60130
+// { dg-do compile { target c++11 } }
+
+#include <tuple>
+
+template <class S, class F, class... T>
+S f1(F f, T... x)
+{
+  return std::get<0>(std::make_tuple(f(x)...));
+}
+
+template <class... T>
+int f2(const T... x)
+{
+  return std::get<0>(std::make_tuple(f1<T>([](int n){return n;}, x)...));
+}
+
+int main()
+{
+  return f2(42);
+}