repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
using10.C
blob
8f0cbda2a8881f5841a7e339ca5b0c70ef203761
1
// PR c++/22136
2
3
struct B {
4
void foo();
5
};
6
7
template <typename T> class I : public B {};
8
9
template <typename T> class D : private I<T> {
10
I<T>::B::foo;
11
};