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
* ru.po: Update.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
using1.C
blob
7b13e53bb098dc4f9081ad34f44c97d180b49b11
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; // { dg-warning "deprecated" }
13
};
14
15
B b;