aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/explicit.C
blob: 9fcecfd81aea4bae19c64d2ce1bf9f62005f550b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Testcase for explicit instantiation of templates.
// Build don't link:

template <class T>
class A {
  T t;
public:
  void f () { }
};

template class A<int>;

template <class T> T min (T a, T b) { return (a < b ? a : b); }

template int min (int, int);