Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
;
}