From: Alexandre Oliva Date: Mon, 9 Mar 1998 22:38:00 +0000 (+0000) Subject: g++.old-deja/g++.other/friend1.C: New test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e335c5414bcba9210401b6d6607252f36e4f0140;p=gcc.git g++.old-deja/g++.other/friend1.C: New test. From-SVN: r18454 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 34818442c84..879c53c2b4f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ + +Tue Mar 10 00:31:51 1998 Alexandre Oliva + + * g++.old-deja/g++.other/friend1.C: New test. + 1998-02-18 Dave Love * 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 00000000000..72ce946625e --- /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> +// +// <199803041125.MAA06937@cor.dptmaths.ens-cachan.fr> +// <19980304102900.46897@dgii.com> +// From: Alexandre Oliva +// 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; +}