Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
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
;
};