• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Protocol Buffers - Google's data interchange format
2// Copyright 2023 Google Inc.  All rights reserved.
3//
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file or at
6// https://developers.google.com/open-source/licenses/bsd
7
8syntax = "proto3";
9
10package protobuf_editions_test;
11
12option java_api_version = 1;
13
14enum TestEnumProto3 {
15  TEST_ENUM_PROTO3_UNKNOWN = 0;
16  TEST_ENUM_PROTO3_VALUE = 1;
17}
18
19message TestMessageProto3 {
20  string string_field = 1;
21
22  map<string, string> string_map_field = 4;
23
24  repeated int32 int_field = 7;
25  repeated int32 int_field_packed = 8 [packed = true];
26  repeated int32 int_field_unpacked = 9 [packed = false];
27}
28