aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/warning9.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/warning9.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/warning9.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/warning9.C b/gcc/testsuite/g++.old-deja/g++.jason/warning9.C
index d46ba37650c..ca9b3a33f9c 100644
--- a/gcc/testsuite/g++.old-deja/g++.jason/warning9.C
+++ b/gcc/testsuite/g++.old-deja/g++.jason/warning9.C
@@ -2,12 +2,12 @@
struct A {
operator int ();
- A& operator= (int); // WARNING - not used below
+ A& operator= (int);
};
main()
{
A a, b;
- a = b; // WARNING - uses synthesized op=
+ a = b;
}