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
x86: Tune Skylake, Cannonlake and Icelake as Haswell
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
memtemp61.C
blob
2e65e817b1de81d7d086151e785ce91c247ded66
1
// { dg-do link }
2
// GROUPS passed membertemplates
3
struct S
4
{
5
template <class T>
6
void foo(T t);
7
};
8
9
10
template <>
11
void S::foo(int i)
12
{
13
}
14
15
16
int main()
17
{
18
S s;
19
s.foo(3);
20
}