aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/friend1.C
blob: 9aea4602c8f12036cc45453fc8727c114d8f9a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Build don't link: 
// GROUPS passed friends
class A
{
private:
  A () {}

friend struct B;
};

class B
{
public:
  A a;
};

B b;

int main () {}