(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.mike/
p9068.C
// { dg-do assemble  }
// prms-id: 9068

struct ostream {
  void operator<< (int);	// { dg-message "operator|no known conversion" } fn ref in err msg
};

class C {
public:
  static int& i ();
  static int& i (int signatureDummy);
};

void foo (ostream& lhs, const C& rhs)
{
  lhs << rhs.i;		// { dg-error "match" } no such i for any opr << ()
}

int& C::i () {
  static int _i = 4711;
  return _i;
}