• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1edition = "2023";
2
3package test;
4
5import "google/protobuf/cpp_features.proto";
6
7message EditionsMessage {
8  int32 plain_field = 1;
9  int32 implicit_presence_field = 2 [features.field_presence = IMPLICIT];
10
11  string str_view = 3 [features.(pb.cpp).string_type = VIEW];
12  repeated string repeated_str_view = 4 [features.(pb.cpp).string_type = VIEW];
13  repeated string repeated_str = 5;
14}
15