namespace ns {
  int Foo;
  void Accept(int a) {}
}

void Runner() {
  ns::Accept(ns::Foo);
  using namespace ns;
  Accept(Foo);
}

/*
OUTPUT:
{
  "funcs": [{
      "id": 0,
      "usr": "c:@N@ns@F@Accept#I#",
      "short_name": "Accept",
      "qualified_name": "ns::Accept",
      "definition_spelling": "3:8-3:14",
      "definition_extent": "3:3-3:24",
      "callers": ["1@7:7-7:13", "1@9:3-9:9"],
      "uses": ["3:8-3:14", "7:7-7:13", "9:3-9:9"]
    }, {
      "id": 1,
      "usr": "c:@F@Runner#",
      "short_name": "Runner",
      "qualified_name": "Runner",
      "definition_spelling": "6:6-6:12",
      "definition_extent": "6:1-10:2",
      "callees": ["0@7:7-7:13", "0@9:3-9:9"],
      "uses": ["6:6-6:12"]
    }],
  "vars": [{
      "id": 0,
      "usr": "c:@N@ns@Foo",
      "short_name": "Foo",
      "qualified_name": "ns::Foo",
      "definition_spelling": "2:7-2:10",
      "definition_extent": "2:3-2:10",
      "uses": ["2:7-2:10", "7:18-7:21", "9:10-9:13"]
    }, {
      "id": 1,
      "usr": "c:namespace_reference.cc@42@N@ns@F@Accept#I#@a",
      "short_name": "a",
      "qualified_name": "a",
      "definition_spelling": "3:19-3:20",
      "definition_extent": "3:15-3:20",
      "uses": ["3:19-3:20"]
    }]
}
*/