/* [dcl.type.class.deduct] prohibits forming an array of placeholder
for a deduced class type. */
- if (is_auto (type) && CLASS_PLACEHOLDER_TEMPLATE (type))
+ if (template_placeholder_p (type))
{
if (name)
error_at (loc, "%qD declared as array of template placeholder "
/* Figure out the index type for the array. */
if (size)
- itype = compute_array_index_type_loc (loc, name, size,
- tf_warning_or_error);
+ {
+ itype = compute_array_index_type_loc (loc, name, size,
+ tf_warning_or_error);
+ if (type_uses_auto (type)
+ && variably_modified_type_p (itype, /*fn=*/NULL_TREE))
+ {
+ sorry_at (loc, "variable-length array of %<auto%>");
+ return error_mark_node;
+ }
+ }
return build_cplus_array_type (type, itype);
}
--- /dev/null
+// PR c++/102414
+// PR c++/101874
+// { dg-do compile { target c++11 } }
+// { dg-options "" }
+
+void
+f (int i)
+{
+ auto x[i] = { 0 }; // { dg-message "variable-length array of .auto." }
+ auto(*p)[i] = (int(*)[i])0; // { dg-message "variable-length array of .auto." }
+ int a[3];
+ auto (*a1)[0/0] = &a; // { dg-message "variable-length array of .auto." }
+// { dg-warning "division by zero" "" { target *-*-* } .-1 }
+}