(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
modules/
friend-2_b.C
// { dg-additional-options -fmodules-ts }

module bink;

struct other {};

void f (pusher *p, other *q)
{
  grabber (p);

  frob (p); // ok, found by ADL
  
  frob (q); // { dg-error "not declared" }
}