mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
12 lines
565 B
C++
12 lines
565 B
C++
// Issue #2396
|
|
|
|
int main()
|
|
{
|
|
B::foo();
|
|
// ^ @function.call
|
|
Foo::A::foo();
|
|
// ^ @function.call
|
|
Foo::a::A::foo();
|
|
// ^ @function.call
|
|
return 0;
|
|
}
|