namespace A
{
struct B
{ };

void f(B &b)
{ }
}

int main()
{
  A::B b;

  f(b);

  return 0;
}
