Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
debug8.C
blob: d50aec487eb19045c1dbdf74f40b9d45849b7f30 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// { dg-options "-g" }
struct
X
{
const
int
x
[
4
];
};
struct
A
{
A
();
A
(
const
A
&);
};
struct
B
{
A a
;
int
b
[
4
];
};
struct
C
{
A a
;
C
()
{
B b
=
B
();
};
};