Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
g++.dg
/
init
/
empty2.C
blob: f0d8e3fec0183f78b33dd6263dac053a0ca52f44 [
file
] [
log
] [
blame
]
// PR c++/86485
// { dg-additional-options -Wmaybe-uninitialized }
struct
E
{};
struct
S
{
S
()
{}
E e
;
};
void
foo
(
S
);
void
bar
(
bool
b
)
{
foo
(
b
?
S
()
:
S
());
}