summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/access24.C
blob: e633766acd0d0fcdba189908ceb0944ab3f04501 (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do assemble  }
// Bug: forward reference to friend doesn't work in template.

template <class T> class A {
  static int i;
  friend struct B;
};

struct B {
  void f () { A<int>::i = 0; }
};