Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
overload
/
cond2.C
blob: cbcdc6ed038fc74b9d0b1972e8a819d04b27bd54 [
file
] [
log
] [
blame
]
struct
C
{
operator
int
();
};
struct
D
{
operator
int
();
};
int
main
()
{
C c
;
D d
;
true
?
c
:
d
;
}