• 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
8edition = "2023";
9
10package protobuf_editions_test;
11
12option features.field_presence = IMPLICIT;
13
14message TestMessageProto3 {
15  string string_field = 1;
16  map<string, string> string_map_field = 4;
17  repeated int32 int_field = 7;
18}
19