blob: f4a3213f0d3f6f6b904f31a361c095e78b3939bd [file] [log] [blame]
// Bug: g++ prefers a non-matching operator== over user-defined conversions
// and a default operator==.
// Build don't link:
struct A {
operator int ();
};
struct B {
friend int operator== (B, int);
};
int foo (A& a) {
return a == 1;
}