OSDN Git Service

add missing tests, put in various test adjustments from devo
authorbrendan <brendan@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 7 Oct 1997 00:08:46 +0000 (00:08 +0000)
committerbrendan <brendan@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 7 Oct 1997 00:08:46 +0000 (00:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15850 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/g++.old-deja/g++.benjamin/p12475.C
gcc/testsuite/g++.old-deja/g++.law/missed-error2.C
gcc/testsuite/g++.old-deja/g++.law/visibility1.C [new file with mode: 0644]
gcc/testsuite/g++.old-deja/g++.law/visibility2.C [new file with mode: 0644]

index fecbd57..ee1e39f 100644 (file)
@@ -1,5 +1,5 @@
 // Build don't link:
 // prms-id: 12475
 
-enum huh { start =-2147483648, next };
+enum huh { start =-2147483648, next };         // WARNING - 
 
index c876805..4589bb1 100644 (file)
@@ -17,7 +17,9 @@ main() {
    foo(4, -37, 14.39, 14.38);
 }
 
-static void foo(int i, int j, double x, double y) { // ERROR - extern
+// 971006 we no longer give an error for this since we emit a hard error
+// about the declaration above
+static void foo(int i, int j, double x, double y) { 
 
    cout << "Max(int): " << max(i,j) << " Max(double): " <<
 max(x,y) << '\n';
diff --git a/gcc/testsuite/g++.old-deja/g++.law/visibility1.C b/gcc/testsuite/g++.old-deja/g++.law/visibility1.C
new file mode 100644 (file)
index 0000000..0314c07
--- /dev/null
@@ -0,0 +1,68 @@
+// Build don't link: 
+// GROUPS passed visibility
+#include <iostream.h>
+
+
+
+class base {
+//==========
+
+    void base_priv(char * n)           
+       { cout << "base_priv called from: " << n << "\n";  };
+
+protected:
+
+    void base_prot(char * n) 
+       { cout << "base_prot called from: " << n << "\n"; };
+
+public:
+
+    void base_publ(char * n) 
+       { cout << "base_publ called from: " << n << "\n"; };
+
+    void test(char * n) { base_publ(n); base_prot(n); base_priv(n); }
+
+}; // class base
+
+
+class derived : private base { // Make this public, 
+//============================ // and we don't get an error
+
+friend void derived_friend();
+
+public :
+
+    void test(char * n) { base_publ(n); base_prot(n);}
+
+}; // class derived
+
+
+
+void
+derived_friend()
+//--------------
+{
+    derived pd;
+
+    pd.base_publ("friend of derived class");   // Compiler error here
+    pd.base_prot("friend of derived class");
+}
+
+
+
+main(int argc, char *argv[])
+//==========================
+{
+    base b;
+    b.base_publ("base class object");
+    b.test("member of base class object");
+    cout << "\n";
+
+    derived pd;
+    pd.test("member of derived class object");
+    derived_friend();
+    cout << "\n";
+
+} /* main */
+
diff --git a/gcc/testsuite/g++.old-deja/g++.law/visibility2.C b/gcc/testsuite/g++.old-deja/g++.law/visibility2.C
new file mode 100644 (file)
index 0000000..8ac5cb9
--- /dev/null
@@ -0,0 +1,68 @@
+// Build don't link: 
+// GROUPS passed visibility
+#include <iostream.h>
+
+
+
+class base {
+//==========
+
+    void base_priv(char * n)           
+       { cout << "base_priv called from: " << n << "\n";  };
+
+protected:
+
+    void base_prot(char * n) 
+       { cout << "base_prot called from: " << n << "\n"; };
+
+public:
+
+    void base_publ(char * n) 
+       { cout << "base_publ called from: " << n << "\n"; };
+
+    void test(char * n) { base_publ(n); base_prot(n); base_priv(n); }
+
+}; // class base
+
+
+class derived : public base {  // Make this public, 
+//============================ // and we don't get an error
+
+friend void derived_friend();
+
+public :
+
+    void test(char * n) { base_publ(n); base_prot(n);}
+
+}; // class derived
+
+
+
+void
+derived_friend()
+//--------------
+{
+    derived pd;
+
+    pd.base_publ("friend of derived class");   // Compiler error here
+    pd.base_prot("friend of derived class");
+}
+
+
+
+main(int argc, char *argv[])
+//==========================
+{
+    base b;
+    b.base_publ("base class object");
+    b.test("member of base class object");
+    cout << "\n";
+
+    derived pd;
+    pd.test("member of derived class object");
+    derived_friend();
+    cout << "\n";
+
+} /* main */
+