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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
field1.C
blob
c61437b28d6dbbe4c70919e4a435278f845eba79
1
struct A {
2
void (*f)(void);
3
};
4
5
template< typename R >
6
struct B : public A {
7
void g()
8
{
9
A::f();
10
}
11
};
12
template class B<bool>;