1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 22:00:07 +08:00
SpaceVim/bundle/nvim-treesitter-0.9.1/tests/query/highlights/cpp/static-namespace-functions.cpp

15 lines
231 B
C++

// 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;
}