aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/cp/pt.c8
-rw-r--r--gcc/cp/typeck2.c17
-rw-r--r--gcc/testsuite/g++.dg/cpp1z/class-deduction84.C9
-rw-r--r--gcc/testsuite/g++.dg/parse/template2.C2
-rw-r--r--gcc/testsuite/g++.dg/template/error8.C2
5 files changed, 18 insertions, 20 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index 6b63edd..106dfe5 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -29305,10 +29305,10 @@ do_class_deduction (tree ptype, tree tmpl, tree init,
}
else if (cxx_dialect < cxx20 && DECL_ALIAS_TEMPLATE_P (tmpl))
{
- /* This doesn't affect conforming C++17 code, so just pedwarn. */
- if (complain & tf_warning_or_error)
- pedwarn (input_location, 0, "alias template deduction only available "
- "with %<-std=c++20%> or %<-std=gnu++20%>");
+ if (complain & tf_error)
+ error ("alias template deduction only available "
+ "with %<-std=c++20%> or %<-std=gnu++20%>");
+ return error_mark_node;
}
tree type = TREE_TYPE (tmpl);
diff --git a/gcc/cp/typeck2.c b/gcc/cp/typeck2.c
index a58d397..4e9632f 100644
--- a/gcc/cp/typeck2.c
+++ b/gcc/cp/typeck2.c
@@ -2197,24 +2197,13 @@ build_functional_cast_1 (location_t loc, tree exp, tree parms,
error_at (loc, "invalid use of %qT", anode);
return error_mark_node;
}
- else if (!parms)
+ else
{
- /* Even if there are no parameters, we might be able to deduce from
- default template arguments. Pass TF_NONE so that we don't
- generate redundant diagnostics. */
- type = do_auto_deduction (type, parms, anode, tf_none,
+ type = do_auto_deduction (type, parms, anode, complain,
adc_variable_type);
if (type == error_mark_node)
- {
- if (complain & tf_error)
- error_at (loc, "cannot deduce template arguments "
- "for %qT from %<()%>", anode);
- return error_mark_node;
- }
+ return error_mark_node;
}
- else
- type = do_auto_deduction (type, parms, anode, complain,
- adc_variable_type);
}
if (processing_template_decl)
diff --git a/gcc/testsuite/g++.dg/cpp1z/class-deduction84.C b/gcc/testsuite/g++.dg/cpp1z/class-deduction84.C
new file mode 100644
index 0000000..29f25e5
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp1z/class-deduction84.C
@@ -0,0 +1,9 @@
+// PR c++/99008
+// { dg-do compile { target c++17 } }
+
+template <class> struct A { A(int = 0); };
+template <class = void> using B = A<int>;
+auto x = B{}; // { dg-error "alias template deduction only available with" "" { target c++17_only } }
+auto y = B(); // { dg-error "alias template deduction only available with" "" { target c++17_only } }
+auto z = B{1}; // { dg-error "alias template deduction only available with" "" { target c++17_only } }
+auto w = B(1); // { dg-error "alias template deduction only available with" "" { target c++17_only } }
diff --git a/gcc/testsuite/g++.dg/parse/template2.C b/gcc/testsuite/g++.dg/parse/template2.C
index 3cb27a8..3cafd9f 100644
--- a/gcc/testsuite/g++.dg/parse/template2.C
+++ b/gcc/testsuite/g++.dg/parse/template2.C
@@ -3,6 +3,6 @@ namespace N {
}
int main() {
- N::C(); // { dg-error "6:cannot deduce template arguments" "" { target c++17 } }
+ N::C(); // { dg-error "8:class template argument deduction failed|no match" "" { target c++17 } }
// { dg-error "7:missing template arguments" "" { target c++14_down } .-1 }
}
diff --git a/gcc/testsuite/g++.dg/template/error8.C b/gcc/testsuite/g++.dg/template/error8.C
index 6cae360..de1534c 100644
--- a/gcc/testsuite/g++.dg/template/error8.C
+++ b/gcc/testsuite/g++.dg/template/error8.C
@@ -3,6 +3,6 @@
template <typename T> struct S {};
void f() {
- throw S (); // { dg-error "9:cannot deduce template arguments" "" { target c++17 } }
+ throw S (); // { dg-error "12:class template argument deduction failed|no match" "" { target c++17 } }
// { dg-error "11:missing template arguments" "" { target c++14_down } .-1 }
}