• 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.proto3;
11
12message Proto3Unpacked {
13  repeated int32 int32_field = 1 [packed = false];
14  repeated string string_field = 2 [packed = false];
15  message SubMessage {
16    int32 int32_field = 1;
17  }
18  repeated SubMessage sub_message_field = 3 [packed = false];
19}
20