Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
opt
/
declone2.C
blob: e725d8ebda91c778a659441afb52d78b140e0591 [
file
] [
log
] [
blame
]
// PR c++/61623
// { dg-options "-Os" }
struct
C
{};
struct
B
:
virtual
C
{};
struct
A
:
B
{
A
(
int
)
{}
};
A a
(
0
);