aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C14
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C b/gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C
new file mode 100644
index 00000000000..d7e08a3876f
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C
@@ -0,0 +1,14 @@
+// Here is a simple one. GCC correctly gives errors for this code when the
+// - -pedantic-errors option is used, whereas g++ doesn't.
+
+// Build don't link:
+
+int (*p1)[3];
+int (*p2)[5];
+
+void
+test ()
+{
+ p1 == p2; // ERROR - comparison.*
+ p1 > p2; // ERROR - comparison.*
+}