aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/cpp/static-namespace-functions.cpp
blob: 3d16c43cf5846add7e6ce4a6e300a0de5c565410 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Issue #2396

int main()
{
  B::foo();
  //  ^ @function.call
  Foo::A::foo();
  //       ^ @function.call
  Foo::a::A::foo();
  //          ^ @function.call
  Foo::a::A::B::foo();
  //             ^ @function.call
  return 0;
}