aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/explicit36.C
blob: 4a4f636683b7fa6eef950c90070a6ab9b619648b (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
// { dg-do link  }
// GROUPS passed templates
template <class T>
void foo(T);

class S {
  friend void foo<>(int);

  int i;
};


template <>
void foo(int)
{
  S s;
  s.i = 3;
}


int main()
{
  foo(3);
}