Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
synth.C
blob: a57f23ce989016d540385cf29d785c3082a07666 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: the synthesized copy constructor for A is not found.
struct
A
{
// A (const A& a): i(a.i) {}
int
i
;
};
struct
B
{
A a
;
B
(
const
B
&
b
):
a
(
b
.
a
),
j
(
b
.
j
)
{
}
// { dg-bogus "" }
int
j
;
};