Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr47290.C
blob: b739de5b749ae6a30802efc6a612aadf64dc2cf1 [
file
] [
log
] [
blame
]
// PR tree-optimization/47290
// { dg-do compile }
struct
V
{
V
(
int
=
0
);
~
V
()
{
for
(;;)
;
}
int
size
();
};
struct
S
{
V a
,
b
;
S
()
:
b
(
a
.
size
())
{}
}
s
;