blob: d6728c79e1783e2e9888589c7255533865151a98 [file] [log] [blame]
// Build don't link:
// 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;
}