aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/explicit32.C
blob: e8e496fe3454326d2e6398910a4c587f508835d0 (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
// { dg-do assemble  }
// GROUPS passed templates
template <class T>
struct S
{
};


template <>
struct S<int>
{
  void foo();
};


void S<int>::foo()
{
}


void bar()
{
  S<int> si;
  si.foo();
}