Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
debug
/
using1.C
blob: 7b13e53bb098dc4f9081ad34f44c97d180b49b11 [
file
] [
log
] [
blame
]
// PR c++/19406
// { dg-do compile }
struct
A
{
virtual
int
foo
();
double
d
;
};
struct
B
:
public
A
{
A
::
d
;
// { dg-warning "deprecated" }
};
B b
;