Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
g++.dg
/
init
/
value2.C
blob: fbe16647126434f45e316ae64bcec8534b6e512e [
file
] [
log
] [
blame
]
// PR c++/35116
// Test that break_out_target_exprs works properly with complex
// value-initialization.
struct
A
{
virtual
void
f
();
};
struct
B
{
A a
;
};
struct
C
{
C
(
int
,
B
=
B
());
};
void
f
()
{
C c
(
4
);
}