aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend41.C
blob: d6b74a084d7b7108c74b964e803048bf1d8b7185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T>
class S {
public:
  template <class U>
  class C {
  public:
    void f() { S::i = 3; }
  };

  template <class U>
  friend class C;

private:
  static int i;
};


template void S<int>::C<double>::f();