]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.rfg / 00321_01-.C
diff --git a/gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C b/gcc/testsuite/g++.old-deja/g++.rfg/00321_01-.C
deleted file mode 100644 (file)
index d7e08a3..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// 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.*
-}