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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
call2.C
blob
86d5c2e82b5abe89b02c6377eed786d8692d79c9
1
// PR c++/13592
2
3
struct S {
4
void operator()(int);
5
};
6
7
struct A {
8
template <typename> void foo();
9
S s;
10
};
11
12
template <typename> void A::foo() {
13
s(0);
14
}