Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
g++.dg
/
init
/
no-elide1.C
blob: 75b648ed12024c782640b965adac4c68943769f3 [
file
] [
log
] [
blame
]
// PR c++/47503
// { dg-options "-fno-elide-constructors" }
struct
A
{
int
i
;
A
();
};
struct
B
{
A a
;
B
(
A
&
aa
)
:
a
(
aa
)
{
}
};