OSDN Git Service

PR c++/52685
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / explicit-instantiation2.C
1 // Bug 10968: implicit instantiation overrides explicit instantiation
2 // { dg-final { scan-assembler "_Z1fIiET_S0_" } }
3
4 template <class T> T f (T t) { return t; }
5 inline void g () { f (4); }
6 template int f (int);