1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-25 07:40:06 +08:00
SpaceVim/bundle/nvim-treesitter/tests/query/highlights/cpp/static-namespace-functions.cpp

13 lines
565 B
C++
Raw Normal View History

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