dep-protobuf/ruby/tests/utf8.proto
Joshua Haberman b07e4b1eeb [Ruby] Warn if assigning a "UTF-8" string with invalid UTF-8. (#17253)
This is a warning now, but will be an error in the next version.

PiperOrigin-RevId: 653236128
2024-07-17 08:15:14 -07:00

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;
}