rt_gccstream/gcc/testsuite/g++.dg/overload/cond2.C

16 lines
109 B
C

struct C
{
operator int();
};
struct D
{
operator int();
};
int main()
{
C c; D d;
true ? c : d;
}