Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
debug
/
pr47209.C
blob: c144c16396c72c90fee824175ad27c798ce6aeb1 [
file
] [
log
] [
blame
]
// { dg-do compile }
// { dg-options "-femit-struct-debug-baseonly" }
struct
A
{
void
foo
();
};
struct
B
:
A
{
typedef
const
A
base
;
using
base
::
foo
;
};