PR c++/85242 - ICE with class definition in template parm.
authorJason Merrill <jason@redhat.com>
Fri, 6 Apr 2018 15:12:34 +0000 (11:12 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 6 Apr 2018 15:12:34 +0000 (11:12 -0400)
* cp-tree.h (PROCESSING_REAL_TEMPLATE_DECL_P): False if
processing_template_parmlist.

From-SVN: r259178

gcc/cp/ChangeLog
gcc/cp/cp-tree.h
gcc/testsuite/g++.dg/template/error58.C [new file with mode: 0644]

index 71eceaa..71a5d45 100644 (file)
@@ -1,5 +1,9 @@
 2018-04-06  Jason Merrill  <jason@redhat.com>
 
+       PR c++/85242 - ICE with class definition in template parm.
+       * cp-tree.h (PROCESSING_REAL_TEMPLATE_DECL_P): False if
+       processing_template_parmlist.
+
        PR c++/85240 - LTO ICE with using of undeduced auto fn.
        * cp-gimplify.c (cp_genericize_r): Discard using of undeduced auto.
 
index dbe34c0..204791e 100644 (file)
@@ -4719,7 +4719,8 @@ more_aggr_init_expr_args_p (const aggr_init_expr_arg_iterator *iter)
    entity with its own template parameter list, and which is not a
    full specialization.  */
 #define PROCESSING_REAL_TEMPLATE_DECL_P() \
-  (processing_template_decl > template_class_depth (current_scope ()))
+  (!processing_template_parmlist \
+   && processing_template_decl > template_class_depth (current_scope ()))
 
 /* Nonzero if this VAR_DECL or FUNCTION_DECL has already been
    instantiated, i.e. its definition has been generated from the
diff --git a/gcc/testsuite/g++.dg/template/error58.C b/gcc/testsuite/g++.dg/template/error58.C
new file mode 100644 (file)
index 0000000..cede1c9
--- /dev/null
@@ -0,0 +1,8 @@
+// PR c++/85242
+
+namespace N
+{
+  struct A {};
+}
+
+template<struct N::A {}> void foo(); // { dg-error "" }