aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/query/highlights/cpp')
-rw-r--r--tests/query/highlights/cpp/static-namespace-functions.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/query/highlights/cpp/static-namespace-functions.cpp b/tests/query/highlights/cpp/static-namespace-functions.cpp
index 1658d5117..2bea488a3 100644
--- a/tests/query/highlights/cpp/static-namespace-functions.cpp
+++ b/tests/query/highlights/cpp/static-namespace-functions.cpp
@@ -3,10 +3,10 @@
int main()
{
B::foo();
- // ^ @function
+ // ^ @function.call
Foo::A::foo();
- // ^ @function
+ // ^ @function.call
Foo::a::A::foo();
- // ^ @function
+ // ^ @function.call
return 0;
}