mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
This is a warning now, but will be an error in the next version. PiperOrigin-RevId: 653236128
9 lines
191 B
Protocol Buffer
9 lines
191 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package utf8_test_protos;
|
|
|
|
message TestUtf8 {
|
|
optional string optional_string = 1;
|
|
repeated string repeated_string = 2;
|
|
map<string, string> map_string_string = 3;
|
|
}
|