aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/friend41.C
blob: e3a6c0c3f471f2ab6ac62dbf19e5db3bddb0413e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do assemble  }
// 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();