Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
overload13.C
blob: 54ab404af11f1ba3a1e1953b5636de29e46722d1 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Origin: Nathan Sidwell <nathan@codesourcery.com>
struct
A
{
bool
operator
==
(
A
const
&);
operator
bool
()
const
;
operator
int
*
()
const
;
};
bool
foo
(
A
&
a1
,
A
&
a2
)
{
return
a1
==
a2
;
}