blob: 851cd25237ab01e42802d8bc9bc0ac40c2347bba [file] [log] [blame]
// 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 ());
}