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

19 lines
377 B
C++
Vendored

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