...

Text file src/github.com/google/flatbuffers/tests/prototest/twice-id.proto

Documentation: github.com/google/flatbuffers/tests/prototest

     1// Sample .proto file that we can not translate to the corresponding .fbs because it has used an id twice
     2
     3option some_option = is_ignored;
     4
     5package proto.test;
     6
     7message ProtoMessage {
     8  optional sint32 e = 2;
     9  optional uint64 twice = 2;
    10}

View as plain text