2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / explicit-instantiation2.C
blob21109a765aa64506ea1bdfae789315c3c5ea3eac
1 // Bug 10968: implicit instantiation overrides explicit instantiation
2 // { dg-final { scan-assembler "_Z1fIiET_S0_" } }
4 template <class T> T f (T t) { return t; }
5 inline void g () { f (4); }
6 template int f (int);