summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/torture/pr64282.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/torture/pr64282.C')
-rw-r--r--gcc/testsuite/g++.dg/torture/pr64282.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.dg/torture/pr64282.C b/gcc/testsuite/g++.dg/torture/pr64282.C
index 48429884e9f..9696effc38d 100644
--- a/gcc/testsuite/g++.dg/torture/pr64282.C
+++ b/gcc/testsuite/g++.dg/torture/pr64282.C
@@ -53,7 +53,7 @@ public:
class H
{
void m_fn7 (const F &, bool &);
- bool m_fn8 (const D<F> &, const F &, F &);
+ void m_fn8 (const D<F> &, const F &, F &);
};
typedef A<int> CandPair;
class I
@@ -91,7 +91,7 @@ H::m_fn7 (const F &, bool &)
F h;
m_fn8 (g, f.first, h);
}
-bool
+void
H::m_fn8 (const D<F> &p1, const F &, F &)
{
F i;