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
/
debug
/
using1.C
blob
d3168fc6c1c7d01fe841f5d763dcb88323c16780
1
// PR c++/19406
2
// { dg-do compile }
3
4
struct A
5
{
6
virtual int foo();
7
double d;
8
};
9
10
struct B : public A
11
{
12
A::d;
13
};
14
15
B b;