Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e335c541
Commit
e335c541
authored
Mar 09, 1998
by
Alexandre Oliva
Committed by
Robert Lipe
Mar 09, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
g++.old-deja/g++.other/friend1.C: New test.
From-SVN: r18454
parent
11a932c0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/g++.old-deja/g++.other/friend1.C
+29
-0
No files found.
gcc/testsuite/ChangeLog
View file @
e335c541
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>
1998-02-18 Dave Love <d.love@dl.ac.uk>
* g77.f-torture/execute/dnrm2.f (dnrm2): Avoid uninitialized (and
* g77.f-torture/execute/dnrm2.f (dnrm2): Avoid uninitialized (and
...
...
gcc/testsuite/g++.old-deja/g++.other/friend1.C
0 → 100644
View file @
e335c541
// 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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment