1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 14:50:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/query/highlights/cpp/static-namespace-functions.cpp

15 lines
231 B
C++
Vendored

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