aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/friend24.C
blob: 5db4d31e721462b4fc6efa7efa7fabc654b1c99d (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
27
// { dg-do compile }

// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>

// PR c++/495: Fail to locate primary class template that is
// injected by friend declaration.

template <int N> struct X
{
  template <int dim> friend struct Y;
};

X<2> x;

template <int dim> struct Y
{
  void f (Y);
  void g (Y);
};

template <int dim> void Y<dim>::f (Y)
{
}

template <int dim> void Y<dim>::g (Y<dim>)
{
}