| Index: third_party/protobuf/src/google/protobuf/map_proto2_unittest.proto
|
| diff --git a/third_party/protobuf/src/google/protobuf/map_proto2_unittest.proto b/third_party/protobuf/src/google/protobuf/map_proto2_unittest.proto
|
| index 916cc54637538cb4e4a28b7c617dcbebd4b846a5..ddc2a58247bc2f9099ebbfd0bb50a8b9c8cd37da 100644
|
| --- a/third_party/protobuf/src/google/protobuf/map_proto2_unittest.proto
|
| +++ b/third_party/protobuf/src/google/protobuf/map_proto2_unittest.proto
|
| @@ -64,3 +64,23 @@ message TestEnumMapPlusExtra {
|
| message TestImportEnumMap {
|
| map<int32, protobuf_unittest_import.ImportEnumForMap> import_enum_amp = 1;
|
| }
|
| +
|
| +message TestIntIntMap {
|
| + map<int32, int32> m = 1;
|
| +}
|
| +
|
| +// Test all key types: string, plus the non-floating-point scalars.
|
| +message TestMaps {
|
| + map<int32, TestIntIntMap> m_int32 = 1;
|
| + map<int64, TestIntIntMap> m_int64 = 2;
|
| + map<uint32, TestIntIntMap> m_uint32 = 3;
|
| + map<uint64, TestIntIntMap> m_uint64 = 4;
|
| + map<sint32, TestIntIntMap> m_sint32 = 5;
|
| + map<sint64, TestIntIntMap> m_sint64 = 6;
|
| + map<fixed32, TestIntIntMap> m_fixed32 = 7;
|
| + map<fixed64, TestIntIntMap> m_fixed64 = 8;
|
| + map<sfixed32, TestIntIntMap> m_sfixed32 = 9;
|
| + map<sfixed64, TestIntIntMap> m_sfixed64 = 10;
|
| + map<bool, TestIntIntMap> m_bool = 11;
|
| + map<string, TestIntIntMap> m_string = 12;
|
| +}
|
|
|