aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@dcc.unicamp.br>1998-03-09 22:38:00 +0000
committerRobert Lipe <robertl@gcc.gnu.org>1998-03-09 22:38:00 +0000
commite335c5414bcba9210401b6d6607252f36e4f0140 (patch)
tree4f311009271cea5701e8b01905aafeb6c5158c73
parent11a932c0ffa433aff94e71235ea125df88ed052a (diff)
downloadgcc-e335c5414bcba9210401b6d6607252f36e4f0140.zip
gcc-e335c5414bcba9210401b6d6607252f36e4f0140.tar.gz
gcc-e335c5414bcba9210401b6d6607252f36e4f0140.tar.bz2
g++.old-deja/g++.other/friend1.C: New test.
From-SVN: r18454
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/friend1.C29
2 files changed, 34 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 3481844..879c53c 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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
index 0000000..72ce946
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.other/friend1.C
@@ -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;
+}