[pushed] c++: overloaded fn in contract [PR108542]
Checks
Commit Message
Tested x86_64-pc-linux-gnu, applying to trunk.
-- 8< --
PR c++/108542
gcc/cp/ChangeLog:
* class.cc (instantiate_type): Strip location wrapper.
gcc/testsuite/ChangeLog:
* g++.dg/contracts/contracts-err1.C: New test.
---
gcc/cp/class.cc | 2 ++
gcc/testsuite/g++.dg/contracts/contracts-err1.C | 7 +++++++
2 files changed, 9 insertions(+)
create mode 100644 gcc/testsuite/g++.dg/contracts/contracts-err1.C
base-commit: e0324e2629e25a90c13c68b4eef1e47b091970c3
@@ -8728,6 +8728,8 @@ instantiate_type (tree lhstype, tree rhs, tsubst_flags_t complain)
complain &= ~tf_ptrmem_ok;
+ STRIP_ANY_LOCATION_WRAPPER (rhs);
+
if (lhstype == unknown_type_node)
{
if (complain & tf_error)
new file mode 100644
@@ -0,0 +1,7 @@
+// PR c++/108542
+// { dg-additional-options -fcontracts }
+// { dg-do compile { target c++11 } }
+
+template<typename T>
+void f (T n) {}
+void g() [[pre: f]]; // { dg-error "overloaded" }