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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
parse
/
qualified1.C
blob
6dfb87e177ca54277123007e9f55aa27ed49b80e
1
struct A {};
2
3
struct B : public A
4
{
5
static void foo ();
6
};
7
8
template <typename T> struct C
9
{
10
C() : f(B::foo) {}
11
void (*f)();
12
};
13
14
C<int> c;