aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend19.C
blob: 998e1639fe69e8d47bfc04121d544d8229ac7d4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Build don't link:

template <class U>
class S1
{
  template <class T>
  friend class S2;

  static int i;
};


template <class T>
class S2
{
public:
  static void f() { S1<T>::i = 3; }
};


void g()
{
  S2<double>::f();
  S2<long>::f();
}