aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/cpp/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/query/highlights/cpp/test.cpp')
-rw-r--r--tests/query/highlights/cpp/test.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/query/highlights/cpp/test.cpp b/tests/query/highlights/cpp/test.cpp
index 77e3be698..3f903a55f 100644
--- a/tests/query/highlights/cpp/test.cpp
+++ b/tests/query/highlights/cpp/test.cpp
@@ -1,19 +1,19 @@
#include <iostream>
#include <cstdlib>
-// ^ include
-// ^ string
+// ^ @include
+// ^ @string
auto main( int argc, char** argv ) -> int
-// ^ type.builtin
- // ^ parameter
- // ^ type.builtin
- // ^ type.builtin
- // ^ operator
+// ^ @type.builtin
+ // ^ @parameter
+ // ^ @type.builtin
+ // ^ @type.builtin
+ // ^ @operator
{
std::cout << "Hello world!" << std::endl;
- // ^ punctuation.delimiter
+ // ^ @punctuation.delimiter
return EXIT_SUCCESS;
- // ^ keyword.return
- // ^ constant
+ // ^ @keyword.return
+ // ^ @constant
}