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

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