1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 18:40:05 +08:00
SpaceVim/bundle/nvim-treesitter-0.9.1/tests/query/highlights/cpp/test.cpp

20 lines
411 B
C++
Raw Normal View History

#include <iostream>
#include <cstdlib>
// ^ include
// ^ string
auto main( int argc, char** argv ) -> int
// ^ type.builtin
// ^ parameter
// ^ type.builtin
// ^ type.builtin
// ^ operator
{
std::cout << "Hello world!" << std::endl;
// ^ punctuation.delimiter
return EXIT_SUCCESS;
// ^ keyword.return
// ^ constant
}