g++.old-deja/g++.other/friend1.C: New test.
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Mon, 9 Mar 1998 22:38:00 +0000 (22:38 +0000)
committerRobert Lipe <robertl@gcc.gnu.org>
Mon, 9 Mar 1998 22:38:00 +0000 (22:38 +0000)
From-SVN: r18454

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.other/friend1.C [new file with mode: 0644]

index 34818442c84856bc5860b21b8f39b965357b32ed..879c53c2b4f4bd8647a6665031a44be44c3f57b7 100644 (file)
@@ -1,3 +1,8 @@
+
+Tue Mar 10 00:31:51 1998  Alexandre Oliva   <oliva@dcc.unicamp.br>
+
+        * g++.old-deja/g++.other/friend1.C: New test.
+
 1998-02-18  Dave Love  <d.love@dl.ac.uk>
 
        * g77.f-torture/execute/dnrm2.f (dnrm2): Avoid uninitialized (and
diff --git a/gcc/testsuite/g++.old-deja/g++.other/friend1.C b/gcc/testsuite/g++.old-deja/g++.other/friend1.C
new file mode 100644 (file)
index 0000000..72ce946
--- /dev/null
@@ -0,0 +1,29 @@
+// Build don't link:
+// f() should be able to access B::j, as of FDIS [class.protected]/1
+
+// Subject: Re: [bug] Inheritance and friend access control broken
+// References: <199803032141.WAA09332@piano.dptmaths.ens-cachan.fr>
+// <orhg5ff544.fsf@iguacu.dcc.unicamp.br>
+// <199803041125.MAA06937@cor.dptmaths.ens-cachan.fr>
+// <orn2f6ek92.fsf@iguacu.dcc.unicamp.br> <19980304102900.46897@dgii.com>
+// From: Alexandre Oliva <oliva@dcc.unicamp.br>
+// Date: 06 Mar 1998 01:43:18 -0300
+
+
+class B {
+protected:
+    int i;
+    static int j;
+};
+
+class D : public B {
+    friend void f();
+};
+
+void f()
+{
+    ((B*)0)->i = 3; // ERROR - protected
+    ((D*)0)->i = 4;
+    B::j = 5;
+    D::j = 6;
+}