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
Rebase.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
memtemp18.C
blob
b51f4dbe78e261c186f7a8fa3f58bf5fb7b35c10
1
// { dg-do assemble }
2
// GROUPS passed templates membertemplates
3
struct S
4
{
5
template <class T>
6
void foo(T) {}
7
};
8
9
template void S::foo(int);
10
11
int main()
12
{
13
S s;
14
s.foo(3);
15
}
16