1// { dg-do assemble  }
2// Testcase for explicit instantiation of templates.
3
4template <class T>
5class A {
6  T t;
7public:
8  void f () { }
9};
10
11template class A<int>;
12
13template <class T> T min (T a, T b) { return (a < b ? a : b); }
14
15template int min (int, int);
16