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

     1  syntax = "proto2";
     2  
     3  // This import is in a subdirectory, so it won't be found by default. This
     4  // exercies the extractor's handling of --proto_path for adding directories to
     5  // the search path.
     6  import "other.proto";
     7  
     8  package example;
     9  
    10  message MyMessage {
    11    optional other.OtherMessage msg = 1;
    12  }