Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
disamb1.C
blob: 638eb2fcdca9d0e5a7ce50d4f13b244f2e876fa5 [
file
] [
log
] [
blame
]
// PR c++/525
// Bug: With -pedantic, we weren't converting this to B1* for the call.
struct
A
{
void
f
();
};
struct
B1
:
public
A
{};
struct
B2
:
public
A
{};
struct
C
:
public
B1
,
public
B2
{
void
g
()
{
B1
::
f
();
};
};