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
PR testsuite/86649
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
overload
/
scope1.C
blob
f783b7613770d55f186107cacc6dfa53199973e9
1
// PR c++/9868
2
3
template <typename T> struct D {
4
void (*p)();
5
6
void clear() {
7
D::p();
8
}
9
};
10
template class D<bool>;