PR c++/84098 - ICE with lambda in template NSDMI.
authorJason Merrill <jason@redhat.com>
Tue, 30 Jan 2018 19:05:12 +0000 (14:05 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 30 Jan 2018 19:05:12 +0000 (14:05 -0500)
* pt.c (instantiate_class_template_1): Ignore more lambdas.

From-SVN: r257199

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/g++.dg/cpp1z/constexpr-lambda19.C [new file with mode: 0644]

index 973798769a47eca07913fb43eece49c378af9855..536a3e36107e686e319e27f19777f5ceaf342a6e 100644 (file)
@@ -1,3 +1,8 @@
+2018-01-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/84098 - ICE with lambda in template NSDMI.
+       * pt.c (instantiate_class_template_1): Ignore more lambdas.
+
 2018-01-29  Jason Merrill  <jason@redhat.com>
 
        PR c++/68810 - wrong location for reinterpret_cast error.
index 6c5d06b9ebbcdfed7e5a081edea4d2bec307d7ae..9516be893aae5baac579fa5bc57832b56221d3ae 100644 (file)
@@ -10527,6 +10527,11 @@ instantiate_class_template_1 (tree type)
        {
          if (TYPE_P (t))
            {
+             if (LAMBDA_TYPE_P (t))
+               /* A closure type for a lambda in an NSDMI or default argument.
+                  Ignore it; it will be regenerated when needed.  */
+               continue;
+
              /* Build new CLASSTYPE_NESTED_UTDS.  */
 
              tree newtag;
@@ -10594,11 +10599,10 @@ instantiate_class_template_1 (tree type)
                  && DECL_OMP_DECLARE_REDUCTION_P (r))
                cp_check_omp_declare_reduction (r);
            }
-         else if (DECL_CLASS_TEMPLATE_P (t)
+         else if ((DECL_CLASS_TEMPLATE_P (t) || DECL_IMPLICIT_TYPEDEF_P (t))
                   && LAMBDA_TYPE_P (TREE_TYPE (t)))
-           /* A closure type for a lambda in a default argument for a
-              member template.  Ignore it; it will be instantiated with
-              the default argument.  */;
+           /* A closure type for a lambda in an NSDMI or default argument.
+              Ignore it; it will be regenerated when needed.  */;
          else
            {
              /* Build new TYPE_FIELDS.  */
diff --git a/gcc/testsuite/g++.dg/cpp1z/constexpr-lambda19.C b/gcc/testsuite/g++.dg/cpp1z/constexpr-lambda19.C
new file mode 100644 (file)
index 0000000..a16d31c
--- /dev/null
@@ -0,0 +1,13 @@
+// PR c++/84098
+// { dg-options -std=c++17 }
+
+struct A{};
+
+template < typename >
+struct Test{
+    static constexpr auto var = []{};
+};
+
+int main(){
+    (void)Test< A >::var;
+}