(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
friend6.C
// PR c++/27100
// This used to fail at link time with an "undefined reference to 'foo'" error.
// { dg-do run }

struct A
{
  friend void foo (const A&) { }
  friend void foo (const A&);
};

int
main ()
{
  foo (A ());
}