repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
explicit-instantiation2.C
blob
21109a765aa64506ea1bdfae789315c3c5ea3eac
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);