up
authorJason Merrill <jason@gcc.gnu.org>
Wed, 18 Nov 1998 02:25:18 +0000 (21:25 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Wed, 18 Nov 1998 02:25:18 +0000 (21:25 -0500)
From-SVN: r23693

gcc/testsuite/g++.old-deja/g++.jason/ctor1.C
gcc/testsuite/g++.old-deja/g++.jason/member1.C [deleted file]
gcc/testsuite/g++.old-deja/g++.mike/misc5.C

index 69afd4255198f81d3e54e5b7b6cf55a5dfa5b77c..06571e1f179b40e1b4d0e39f347dc844d5dd49c7 100644 (file)
@@ -3,7 +3,7 @@
 extern "C"
 {
   struct xx {
-    void (*xx)(void);
+    void (*xx)(void);          // ERROR - field with name of class
     int x,y;
   };
 }
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/member1.C b/gcc/testsuite/g++.old-deja/g++.jason/member1.C
deleted file mode 100644 (file)
index c25a190..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-// Build don't link:
-
-struct S { int S; } object;
-struct S function () { return object; }
index bd3e85cee481baf3913ed6b0df6a085b3a6b4af7..a0761b24818b318b3315c4c0ee5e872d08e2d23d 100644 (file)
@@ -7,5 +7,5 @@ struct S1 {
   static int S1;               // ERROR - uses same name 9.3
 };
 struct S2 {
-  union { int ii; float S2; }; // ERROR - uses same name 9.3 , XFAIL *-*-*
+  union { int ii; float S2; }; // ERROR - uses same name 9.3
 };