re PR c++/63628 ([c++1y] cannot use decltype on captured arg-pack)
authorJason Merrill <jason@redhat.com>
Wed, 16 Dec 2015 18:22:17 +0000 (13:22 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Wed, 16 Dec 2015 18:22:17 +0000 (13:22 -0500)
PR c++/63628
* pt.c (tsubst_pack_expansion): Also make dummy decls if
retrieve_local_specialization fails.

From-SVN: r231713

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/g++.dg/cpp1y/lambda-generic-variadic3.C [new file with mode: 0644]

index a3a73a39cbe16a72c5f5233de3a6ad74e7a0fe63..751779244f6047021b13927bfdec47e71f3285c7 100644 (file)
@@ -1,3 +1,9 @@
+2015-12-16  Jason Merrill  <jason@redhat.com>
+
+       PR c++/63628
+       * pt.c (tsubst_pack_expansion): Also make dummy decls if
+       retrieve_local_specialization fails.
+
 2015-12-16  David Malcolm  <dmalcolm@redhat.com>
 
        * parser.c (cp_lexer_peek_conflict_marker): New function.
index 8a39ca4861abc917de22ffd2a4883e2ef7d59385..2c2da11488bed14f3b55f1b3e8e89ce924c7d2d9 100644 (file)
@@ -10803,12 +10803,16 @@ tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
          if (PACK_EXPANSION_LOCAL_P (t) || CONSTRAINT_VAR_P (parm_pack))
            arg_pack = retrieve_local_specialization (parm_pack);
          else
+           /* We can't rely on local_specializations for a parameter
+              name used later in a function declaration (such as in a
+              late-specified return type).  Even if it exists, it might
+              have the wrong value for a recursive call.  */
+           need_local_specializations = true;
+
+         if (!arg_pack)
            {
-             /* We can't rely on local_specializations for a parameter
-                name used later in a function declaration (such as in a
-                late-specified return type).  Even if it exists, it might
-                have the wrong value for a recursive call.  Just make a
-                dummy decl, since it's only used for its type.  */
+             /* This parameter pack was used in an unevaluated context.  Just
+                make a dummy decl, since it's only used for its type.  */
              arg_pack = tsubst_decl (parm_pack, args, complain);
              if (arg_pack && DECL_PACK_P (arg_pack))
                /* Partial instantiation of the parm_pack, we can't build
@@ -10816,7 +10820,6 @@ tsubst_pack_expansion (tree t, tree args, tsubst_flags_t complain,
                arg_pack = NULL_TREE;
              else
                arg_pack = make_fnparm_pack (arg_pack);
-             need_local_specializations = true;
            }
        }
       else if (TREE_CODE (parm_pack) == FIELD_DECL)
diff --git a/gcc/testsuite/g++.dg/cpp1y/lambda-generic-variadic3.C b/gcc/testsuite/g++.dg/cpp1y/lambda-generic-variadic3.C
new file mode 100644 (file)
index 0000000..9b3455a
--- /dev/null
@@ -0,0 +1,15 @@
+// PR c++/63628
+// { dg-do compile { target c++14 } }
+
+auto const pack = [](auto&&... t)
+{
+  return [&](auto&& f)->decltype(auto)
+  {
+    return f(static_cast<decltype(t)>(t)...);
+  };
+};
+
+int main(int argc, char** argv) {
+  pack(1)([](int){});
+  return 0;
+}