1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-25 02:20:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/query/highlights/cpp/static-namespace-functions.cpp
2022-04-14 12:01:23 +08:00

13 lines
550 B
C++

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