aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/friend2.C
blob: 32a0a285fc65da1068754aa1c62af241507d9d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Build don't link:

void
f()
{
  class Local_2 {
    friend class Friend;

    int i;
  };
  
  class Friend {
  public:
    void g() {
      Local_2 l2;
      l2.i = 3;
    }
  };
}