Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
cond4.C
blob: d2853f403873e760ce225b121462d9c87e645b08 [
file
] [
log
] [
blame
]
// PR c++/93046
// { dg-do compile }
// { dg-options "" }
struct
S
{
S
(
int
);
operator
bool
();
};
S
foo
()
{
return
S
(
1
)
?
:
S
(
2
);
}