kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/cxx/extractor/testdata/extract_verify_iostream_test.cc (about)

     1  #include <iostream>
     2  #include <string>
     3  
     4  int main() {
     5    std::string s;
     6    //- @s ref/writes StringS
     7    //- StringS.node/kind variable
     8    s = "hello world";
     9    std::cout << s << std::endl;
    10    return 0;
    11  }