From 6b5d25c3aaa7e15f02cf59755ae0776bd8b951f5 Mon Sep 17 00:00:00 2001 From: Protobuf Team Bot Date: Thu, 27 Oct 2022 21:12:05 +0000 Subject: [PATCH] Internal change PiperOrigin-RevId: 484346368 --- src/google/protobuf/unittest.proto | 5 +++++ 1 file changed, 5 insertions(+) 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; +}