diff --git a/src/google/protobuf/unittest.proto b/src/google/protobuf/unittest.proto index b7a1b2d145..2ee1acf2ee 100644 --- a/src/google/protobuf/unittest.proto +++ b/src/google/protobuf/unittest.proto @@ -1570,3 +1570,8 @@ message StringParseTester { repeated string repeated_string_midfield = 1002; repeated string repeated_string_hifield = 1000002; }; + +message BadFieldNames{ + optional int32 OptionalInt32 = 1; + optional int32 for = 2; +}