aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/visibility5.C
blob: a53881a641e877df45ca7cdcebce96498faf71d5 (plain)
1
2
3
4
5
6
7
8
// Build don't link: 
// GROUPS passed visibility
template<int K> class B;
template<int K> class A {int n; friend class B<K>;};
template<int K> class B {public: void method(A<K>) const;};
template<int K> void B<K>::method(A<K> X) const {X.n=0;}
typedef B<2> B2;