view gcc/testsuite/g++.dg/lookup/friend19.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// Make sure unhiding friends doesn't unhide similarly named friends

struct X
{
  friend int foo (X);
};

struct Y
{
  friend int foo (Y);
};

void Baz ()
{
  foo (X());
  foo (Y());
}

int foo (Y);
int foo (int);
// foo(X) still hidden

void Bar ()
{
  foo (X());
  foo (Y());
  ::foo (X()); // { dg-error "" }
  ::foo (Y());
}