Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
overload1.C
blob: 8a833aa2a34efee6ab812f8201e36946252795ae [
file
] [
log
] [
blame
]
// { dg-do run }
struct
A
{
A
operator
+
(
int
)
const
{
return
*
this
;
}
};
A
operator
+
(
A
,
float
);
int
main
()
{
A a
;
a
+
1
;
}