Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
conversion
/
op2.C
blob: b400988108d28634a21178630c9c06a9931b4e0a [
file
] [
log
] [
blame
]
// PR c++/13907
struct
A
{
operator
int
&
();
operator
const
int
&
()
const
;
};
void
f
(
int
&);
void
f
(
const
int
&);
int
main
()
{
const
A x
=
A
();
f
(
x
);
}