A non-type template parm with a placeholder type is type-dependent.
authorJason Merrill <jason@redhat.com>
Tue, 7 May 2019 22:37:14 +0000 (18:37 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 7 May 2019 22:37:14 +0000 (18:37 -0400)
* pt.c (type_dependent_expression_p): A non-type template parm with
a placeholder type is type-dependent.

From-SVN: r270984

gcc/cp/ChangeLog
gcc/cp/pt.c

index e974951dc525cdf42c3c503bf543015bb36b3e9d..bd0914b8ffad89703764272973e2a057ecf27a4b 100644 (file)
@@ -1,3 +1,8 @@
+2019-05-07  Jason Merrill  <jason@redhat.com>
+
+       * pt.c (type_dependent_expression_p): A non-type template parm with
+       a placeholder type is type-dependent.
+
 2019-05-06  Marek Polacek  <polacek@redhat.com>
 
        PR c++/90265 - ICE with generic lambda.
index 2f2066e297cf5aeccbd94022eb1cca6a3177e817..92b67106d6305952fa3027964b1888a288a2c993 100644 (file)
@@ -25981,6 +25981,13 @@ type_dependent_expression_p (tree expression)
       return false;
     }
 
+  /* The type of a non-type template parm declared with a placeholder type
+     depends on the corresponding template argument, even though
+     placeholders are not normally considered dependent.  */
+  if (TREE_CODE (expression) == TEMPLATE_PARM_INDEX
+      && is_auto (TREE_TYPE (expression)))
+    return true;
+
   gcc_assert (TREE_CODE (expression) != TYPE_DECL);
 
   /* Dependent type attributes might not have made it from the decl to