repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
friend1.C
blob
4d9262811b5e05ca2abf544c969892c57f04a8dc
1
// { dg-do assemble }
2
// GROUPS passed friends
3
class A
4
{
5
private:
6
A () {}
7
8
friend struct B;
9
};
10
11
class B
12
{
13
public:
14
A a;
15
};
16
17
B b;
18
19
int main () {}