blob: cbcdc6ed038fc74b9d0b1972e8a819d04b27bd54 [file] [log] [blame]
struct C
{
operator int();
};
struct D
{
operator int();
};
int main()
{
C c; D d;
true ? c : d;
}